本文為大家介紹了外掛程式jquery.confirm彈出確認訊息的實作方法,具有一定的參考價值,特分享給大家供大家參考,具體內容如下
實現效果:
具體代碼:
1、插件預設參數
// 默认参数 $.confirm.defaults = { // 样式 css: "http://static.qianduanblog.com/css/jquery.confirm/default.min.css?v=" + Math.ceil(new Date() / 86400000), // 确认框内容 content: "确认吗?", // 确认按钮文字 sureButton: "确认", // 取消按钮文字 cancelButton: "取消", // 位置 position: {}, // 自动打开 autoOpen: false, // 动画持续时间 duration: 123, // 打开确认框回调 onopen: emptyFn, // 单击了确认或者取消回调 onclick: emptyFn, // 确认回调 onsure: emptyFn, // 取消回调 oncancel: emptyFn, // 关闭确认框回调 onclose: emptyFn }
2、外掛結構與樣式
jquery.confirm的dom結構為:
<div class="jquery_confirm____" style="display:none"> <div class="jquery_confirm____body">确认框消息</div> <div class="jquery_confirm____footer"> <button class="button button-primary jquery_confirm____sure">确认</button> <button class="button button-error jquery_confirm____cancel">取消</button> </div> </div>
預設的外掛樣式是基於css.3,預設的外掛樣式位址為default,外掛樣式只渲染一次,不會多次渲染,以第一次使用外掛程式的樣式為準。
3、使用方法
// 打开确认框 $.confirm({ content: "确认要查看吗?", onopen: function() { alert("确认框打开了!"); }, onclose: function() { alert("确认框关闭了!"); }, onsure: function() { alert("你单击了确认按钮!"); }, oncancel: function() { alert("你单击了取消按钮!"); }, onclick: function(s) { if (s) { alert("你单击了确认按钮!"); } else { alert("你单击了取消按钮!"); } } }); $.confirm("确认吗?", function(s) { if (s) { alert("你单击了确认按钮!"); } else { alert("你单击了取消按钮!"); } });
希望本文所述對大家學習jquery程式設計有所幫助。