<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="https://cdn.bootcss.com/jquery/2.0.2/jquery.min.js" type="text/javascript"></script>
<script src="http://static.runoob.com/assets/jquery/jquery.growl/javascripts/jquery.growl.js"
type="text/javascript"></script>
<link href="http://static.runoob.com/assets/jquery/jquery.growl/stylesheets/jquery.growl.css" rel="stylesheet"
type="text/css"/>
<script type="text/javascript">
$(function () {
$.growl({
title: "消息标题",
message: "消息内容!"
});
$('.error').click(function (event) {
event.preventDefault()
event.stopPropagation()
return $.growl.error({
title: "错误标题",
message: "错误消息内容!"
});
});
$('.notice').click(function (event) {
event.preventDefault()
event.stopPropagation()
return $.growl.notice({
title: "提醒标题",
message: "提醒消息内容!"
});
});
$('.warning').click(function (event) {
event.preventDefault()
event.stopPropagation()
return $.growl.warning({
title: "警告标题",
message: "警告消息内容!"
});
});
})
</script>
</head>
<body>
<ul>
<li>
<a href="#" class="error">错误!</a>
</li>
<li>
<a href="#" class="notice">提醒!</a>
</li>
<li>
<a href="#" class="warning">警告!</a>
</li>
</ul>
</body>
</html>