我的 jquery-ui dialog box
有点问题。
问题在于,当我关闭对话框并单击触发该对话框的链接时,除非刷新页面,否则它不会再次弹出。
如何在不刷新实际页面的情况下返回对话框。
下面是我的代码:
$(document).ready(function() {
$('#showTerms').click(function()
{
$('#terms').css('display','inline');
$('#terms').dialog({
resizable: false,
modal: true,
width: 400,
height: 450,
overlay: { backgroundColor: "#000", opacity: 0.5 },
buttons:{ "Close": function() { $(this).dialog("close"); } },
close: function(ev, ui) { $(this).remove(); },
});
});
谢谢