分类分类
更新时间:2026-08-08 19:06:31作者:fang
本文实例介绍了纯JavaScript实现消息提示特效是一款基于notie.js插件实现的可以制作Alert提示框,确认框和带输入的消息框,分享给大家供大家参考,具体内容如下
效果图:

实现的代码:
html代码:
<br><br><br><br><br><br>
<article class="zzsc">
<div class="div-ext">
<div class="div-int">
<span>Test notie with these buttons:</span>
<br>
<button onclick="success();">Success</button>
<button onclick="warning();">Warning</button>
<button onclick="error();">Error</button><br>
<button onclick="info();">Information</button>
<button onclick="confirm();">Confirm</button>
<button onclick="input();">Input</button>
<br>
</div>
</div>
</article>
js代码:
function success() {
notie.alert(1, 'Success!', 2);
}
function warning() {
notie.alert(2, 'Warning<br><b>with</b><br><i>HTML</i><br><u>included.</u>', 2);
}
function error() {
notie.alert(3, 'Error.', 2);
}
function info() {
notie.alert(4, 'Information.', 2);
}
function confirm() {
notie.confirm('Are you sure you want to do that?<br><b>That's a bold move...</b>', 'Yes', 'Cancel', function () {
notie.alert(1, 'Good choice!', 2);
});
}
function input() {
notie.input('Please enter your email address:', 'Submit', 'Cancel', 'email', 'name@example.com', function (value_entered) {
notie.alert(1, 'You entered: ' + value_entered, 2);
});
}
希望本文所述对大家学习javascript程序设计有所帮助。
相关
星球小队策略游戏316.49 MBv1.15.366.638912026-08-08
下载超市大亨3D经营养成253.14 MBv10.252026-08-08
下载绝世武林角色扮演453.09 MBv1.8.14162026-08-08
下载Crush Crush手机版经营养成124.86 Mv0.4482026-08-08
下载消消大亨经营养成13.56 Mv1.0.02026-08-08
下载endacopia手机版冒险游戏1.43Gv1.0.02026-08-08
下载最强帮主角色扮演143.91 MBv9991.12026-08-08
下载战西游手游折扣版策略游戏13.77 MBv1.02026-08-08
下载富豪物语创业时代官方版经营养成215.01 Mv3.0.12026-08-08
下载咒术回战爱憎乱斗手游动作射击291.7 Mv1.0.02026-08-08
下载三国吧兄弟折扣版策略游戏380.04 MBv1.0.02026-08-08
下载代号97动作射击277.47 Mv1.0.72026-08-08
下载










