Amaze UI JS 模态窗口 Modal 点击确认时不关闭
本文发布于 4 年前,部分内容可能已经失去参考价值。
将 closeOnConfirm
设置为 false
,需要关闭时调用 this.close();
例:
var $promt = $('#my-prompt').modal({
relatedTarget: this,
closeOnConfirm: false,
closeOnCancel: false,
onConfirm: function (e) {
if (!e.data) {
alert('输入点东西吧!')
} else {
alert('输入了');
this.close();
}
},
onCancel: function (e) {
alert('不想说!');
}
});
可能相关的内容