安裝
x0popup.min.css
x0popup.min.js
使用
function x0popup(func) {
x0p({
title: '請(qǐng)確認(rèn)',
text: '是否執(zhí)行當(dāng)前操作',
icon: 'info',
buttons: [{
type: 'cancel',
text: '取消'
}, {
type: 'info',
text: '確定'
}]
},
function(button) {
if (button == 'info') {
func();
}
});
}
-
參考
傳送門