我正在使用jquery.confirm
来显示我的提醒消息,但是当我在jquery.confirm
函数中使用jquery.confirm
时,它在第二次调用中没有显示任何内容。
我已粘贴使用的代码:
if (data == 'already') {
jrn.confirm({
'title': 'mytitle',
'message': 'mymessage.',
'buttons': {
'close': {
'class': 'blue',
'action': function () {}
},
'remove me': {
'class': 'gray',
'action': function () {
var DelURL = '@Url.Action("deletecellno", "partials")';
jrn.post(DelURL, { cellno: celln }, function (msg) {
jrn.confirm({
'title': 'mytitle2',
'message': 'mymessage',
'buttons': {
'close': {
'class': 'blue',
'action': function () { }
}
}
});
});
}
}
}
});
}
第二次确认不起作用。为什么呢?