你好我想在引导程序对话框关闭时刷新页面。我试图在刷新引导程序对话框之前刷新页面。随机id分配给引导程序对话框,所以我也无法使用它。我需要帮助。< / p>
var commentBox = BootstrapDialog.show({
title: 'Comments',
message: showComments(),
buttons: [{
label: 'Add Comment',
action: function () { addComment(); },
}, {
label: 'Close',
action: function (dialogItself) {
dialogItself.close();
}
}]
});
这是我的引导对话框。如何控制它是否关闭。谢谢你的帮助。