我正在尝试将 jsp 文件加载到 jQuery UI 对话框http://jqueryui.com/demos/dialog/中。该 jsp 包含一个 fullCalendar http://arshaw.com/fullcalendar/日历。控制台调用 calLoader.jsp 或多或少只包含:
<jsp:include page="../cal.jsp"/>
当我第一次打开对话框时,一切正常,但是在我关闭对话框并尝试再次打开它之后,我从 Chrome 中获得了以下堆栈跟踪:
Uncaught RangeError: Maximum call stack size exceeded
d.d.extend._Deferred.f.resolveWith
d.d.extend._Deferred.f.done
d.d.fn.d.ready
d.d.fn.d.init
d.d
(anonymous function)
d.d.extend.globalEval
ba
d.d.extend.each
d.fn.extend.domManip
d.fn.extend.append
d.fn.extend.html
d.fn.extend.load.d.ajax.complete
d.d.extend._Deferred.f.resolveWith
v
d.support.ajax.d.ajaxTransport.send.c
Firefox 中的问题是相同的,但我收到消息:
too much recursion
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
我意识到我正在尝试加载多个相同的东西,并且它需要以某种方式重复使用或卸载/删除和重新加载,但我不知道如何做到这一点。
这是我用来打开日历的代码(被要求)。
function openCalendar() {
var dialog = jQuery('<div id="calendaropener"></div>')
.dialog({
autoOpen: false,
draggable: true,
modal: false,
resizable: false,
width: 820,
height: 750,
position: [50, 50],
title: 'Kalender',
close: function(ev, ui) { calendarObj = null; }
});
dialog.load("calLoader.jsp");
dialog.dialog('open');
}
从我页面上的按钮调用函数 openCalendar()。谢谢!