我使用下面的代码在jQuery dailogbox上加载内部页面,但是当我单击内部页面上的Cancel按钮时。它仍然是屏幕上的对话框标题栏。如何完成离开对话框。
$("#dialogBox").load('http://internalpage.aspx').dialog({
title: $(this).attr("data-dialog-title"),
close: function() { $(this).remove() },
modal: true
})
我关闭对话框的代码
$('#dialog-box').dialog({
autoOpen: false,
resizable: true,
title: name,
modal: true
});
$('#dialog-box').dialog('close');