前端弹窗提示

$.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("取消");
}
}
}
});

posted @ 2022-05-31 08:44  双氧水_c  阅读(141)  评论(0)    收藏  举报