安装
x0popup.min.css
x0popup.min.js
使用
function x0popup(func) {
x0p({
title: '请确认',
text: '是否执行当前操作',
icon: 'info',
buttons: [{
type: 'cancel',
text: '取消'
}, {
type: 'info',
text: '确定'
}]
},
function(button) {
if (button == 'info') {
func();
}
});
}
-
参考
传送门