参数详解:
1 2 3 4 5 6 | message: ' 操作成功' , //提示信息 duration: '5000' , //显示时间(默认:5s) type: 'info' , //显示类型,包括4种:success.error,info,warning 默认info showClose: false , //显示关闭按钮(默认:否) center: true , //页面竖直居中(默认:否) onClose: function , //点击关闭回调函数 |
调用方式:
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 | $( '.btn-info' ).on( 'click' , function (){ $.message({ message: '信息提醒' , type: 'info' }); }) $( '.btn-success' ).on( 'click' , function (){ $.message({ message: '成功提示' , type: 'success' }); }) $( '.btn-warning' ).on( 'click' , function (){ $.message({ message: '警告提示' , type: 'warning' , duration:0, showClose: true , center: true , onClose: function (){alert( '知道了' )} }); }) $( '.btn-danger' ).on( 'click' , function (){ $.message({ message: '失败提示' , type: 'error' }); }) |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com