在我的页脚页面中
Link 1 , Link 2 , Link 3
单击这些链接中的任何一个都将打开一个包含数据内容和页脚文件的对话框。因此,对话框将如下所示:
Data
Link 1 , Link 2 , Link 3
当我点击对话框中的一个链接时,它会打开另一个对话框,所以这个逻辑进入了一个无限循环。
有没有办法避免这个对话框的重复?
开启功能:
$(function() {
$('#dialog').dialog('close');
// Trying it here but not sure if this is the right place to do
// I want to close all dialog boxes before opening one
$( "#dialog" ).dialog({
modal:true,
height:600,
width:600,
my: "center",
at: "center",
of:window,
resizable:false,
closeOnEscape:false,
open:function (event, ui) {
$('#dialog').load('/contact.jsp');
}
});
$( "#dialog" ).dialog("option", "title", url);
});
还在考虑我是否将 .close 放在正确的位置开始?