我正在使用 JQuery 对话框 UI 让用户确认页面上的操作。如果是,将进行 API 调用,然后窗口将重定向。如果否,则对话框关闭。
在重定向之前,我想在实际对话框中显示“成功”消息,例如“执行此操作”。关于如何实现这一点的任何想法?
这是我的代码:
$( "#dialog-confirm" ).dialog({
resizable: false,
height:140,
modal: true,
buttons:
{
"Yes": function()
{
var request = '123';
var url = '<?= $this->baseURL; ?>?rn=' + request;
$.getJSON(url, function(data) {});
}
var msg = 'Action performed';
//? How do I display this message in the modal dialog window???
$( this ).dialog( "close" );
var url = '<?= $this->moduleURL; ?>/cancel';
window.location.href = url;
},
"Nevermind": function() {
$( this ).dialog( "close" );
}
}
});