jquery插件jquery.confirm弹出确认消息

jquery插件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> <div>确认框消息</div> <div> <button>确认</button> <button>取消</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("你单击了取消按钮!"); } });

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgwspx.html