前端弹窗提示
$.confirm({
title: "提醒",
content: "是否xxxxx",
icon: "fa fa-question-circle",
animation: "top",
buttons: {
ok: {
text: "是",
btnClass: "btn-primary",
keys: ["enter"],
action: function () {
alert("是");
}
},
no: {
text: "否",
btnClass: "btn-primary",
keys: ["enter"],
action: function () {
alert("否");
}
},
cannel: {
text: "取消",
btnClass: "btn-primary",
keys: ["enter"],
action: function () {
alert("取消");
}
}
}
});

浙公网安备 33010602011771号