更新时间:2021-07-27 01:28:16
alert.js和alert.css放入同一目录,在页面引入alert.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | $.alert( '弹窗文字说明' , function () { $.toast( 'close' ); }); $.confirm( '弹窗文字说明' , function () { $.toast( 'confirm' ); }, function () { $.toast( 'cancel' ); }); $.toast({ content: 'toast弹窗' , time: 3000 }, function () { console.log( 'close' ); }) $.loading( '加载中' ); setTimeout(() => { $.hideLoading(); }, 3000) var html = '<input type="password" name="pwd" placeholder="请输入" />' $.confirm({ title: '信息标题' , content: html }, function () { var password = $( 'input[name="pwd"]' ).val(); if (!password) { $.toast( '信息内容' ); return false ; } $.toast(password); }); |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com