我有一个带有一些网格的 jsp 页面。每行都是来自服务器端的动态加载的 .jsp 页面。在选择一行时,我希望页面显示在弹出窗口中。
它可以很好地加载我的 jsp,但是在 head 部分有一个标签,其中包含要在页面的不同元素上调用的所有 javascript 函数。
在我的控制台脚本面板中显示找不到源。因此我的 javascript 没有加载。
这就是我如何称呼我的新页面..
$.ajax({type:'POST', url: url, data:form, success: function(response) {
var win = window.open('','_blank','toolbar=yes, menubar=yes, location=no, fullscreen=no, resizable=yes, scrollbars=yes, width=1600, height=600');
if(win == null || typeof(win) == "undefined") {
alert("Please enable popups in your browser settings to continue.");
}
with(win.document)
{
open();
write(response);
close();
}
$(win).unload(function() {
$("#ResultSet").flexReload();
});