gpt4 book ai didi

jquery - 在 jquery.simplemodal 中使用 iframe,当弹出窗口关闭时 iframe 会重新加载

转载 作者:行者123 更新时间:2023-12-01 01:12:12 26 4
gpt4 key购买 nike

var pt_popup_options = {};

function pt_popup_iframe(sURL, sOkFunction)
{
pt_popup_okfunction = sOkFunction;
$("#pt_msgBox").css('width', '700px');
$("#pt_msgBox").css('heigth', '500px');
$("#pt_msgBox > p").html('<iframe style="width: 696px; height: 496px;" src="' + sURL + '"></iframe>');
$("#pt_msgBox").modal(pt_popup_options);
}

当通过关闭按钮或弹出窗口右上角的“x”关闭弹出窗口时,iframe 会重新加载并向服务器发出请求。它不应该这样做。有什么想法可以防止这种情况发生吗?我使用的是 Chrome 和 jQuery 1.4.2。

谢谢!

最佳答案

我也遇到了同样的问题。

修复此问题的最简单方法是设置 persist 选项。

$("#pt_msgBox").modal({persist:true});

从 simplemodal-1.3.5 开始

persist: (Boolean:false) Persist the data across modal calls? Only used for existing DOM elements. If true, the data will be maintained across modal calls, if false, the data will be reverted to its original state.

关于jquery - 在 jquery.simplemodal 中使用 iframe,当弹出窗口关闭时 iframe 会重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2382157/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com