W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
jQuery Growl 插件(消息提醒) 允許您很容易地在一個(gè)覆蓋層顯示反饋消息。消息會(huì)在一段時(shí)間后自動(dòng)消失,不需要單擊"確定"按鈕等。用戶(hù)也可以通過(guò)移動(dòng)鼠標(biāo)或點(diǎn)擊關(guān)閉按鈕加快隱藏信息。
該插件目前版本是 1.0.0。
訪(fǎng)問(wèn) jQuery Growl 官網(wǎng),下載 jQuery Growl 插件。
下載好插件后導(dǎo)入 jQuery 庫(kù),jquery.growl.js,jquery.growl.css 三個(gè)文件,如:
<script src="https://cdn.bootcss.com/jquery/2.0.2/jquery.min.js" rel="external nofollow" type="text/javascript"></script>
<script src="https://atts.w3cschool.cn/jquery.growl/javascripts/jquery.growl.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" />
如需使用 Growl 插件,請(qǐng)選擇你要設(shè)置的顯示文本元素,把文本作為參數(shù)傳遞給它:
$.growl({ title: "消息標(biāo)題", message: "消息內(nèi)容!" });
$.growl.error({ title: "錯(cuò)誤標(biāo)題", message: "錯(cuò)誤消息內(nèi)容!" });
$.growl.notice({title: "提醒標(biāo)題", message: "提醒消息內(nèi)容!" });
$.growl.warning({title: "警告標(biāo)題", message: "警告消息內(nèi)容!" });
有幾個(gè)可用的默認(rèn)選項(xiàng)。如果您有興趣,可以查看下面完整的實(shí)例演示。
jQuery Message 插件演示。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery Growl 插件</title>
<script src="https://cdn.staticfile.org/jquery/2.0.2/jquery.min.js" rel="external nofollow" type="text/javascript"></script>
<script src="https://atts.w3cschool.cn/jquery.growl/javascripts/jquery.growl.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(function() {
$.growl({
title: "消息標(biāo)題",
message: "消息內(nèi)容!"
});
$('.error').click(function(event) {
event.preventDefault();
event.stopPropagation();
return $.growl.error({
title: "錯(cuò)誤標(biāo)題",
message: "錯(cuò)誤消息內(nèi)容!"
});
});
$('.notice').click(function(event) {
event.preventDefault();
event.stopPropagation();
return $.growl.notice({
title: "提醒標(biāo)題",
message: "提醒消息內(nèi)容!"
});
});
return $('.warning').click(function(event) {
event.preventDefault();
event.stopPropagation();
return $.growl.warning({
title: "警告標(biāo)題",
message: "警告消息內(nèi)容!"
});
});
});
</script>
</head>
<body>
<ul>
<li>
<a class="error" href="#">錯(cuò)誤!</a>
</li>
<li>
<a class="notice" href="#">提醒!</a>
</li>
<li>
<a class="warning" href="#">警告!</a>
</li>
</ul>
</body>
</html>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: