|
|
@@ -12,7 +12,9 @@ iframe.height = height;
|
|
|
$(".packing .exptj").click(function() {
|
|
|
$(".addful .addwp").html("<iframe id='abccc' allowtransparency='true' frameborder='0' scrolling='auto' allowfullscreen='' mozallowfullscreen='' webkitallowfullscreen='' src='/choice/1' data-focus='true'></iframe>");
|
|
|
$( ".addwp" ).draggable({revert: true,iframeFix:true});// revert: true,axis: "x"
|
|
|
- window.setInterval("reinitIframe()", 200);
|
|
|
+ //window.setInterval("reinitIframe()", 200);
|
|
|
+ //2026年7月16日 先采用B方案 修改定时器泄露
|
|
|
+ parent.reinitIframeTimer = window.setInterval(reinitIframe, 200);
|
|
|
$(".addful").show();
|
|
|
});
|
|
|
|
|
|
@@ -504,7 +506,9 @@ $("#currency").change(function(){
|
|
|
{
|
|
|
$(".addful .addwp").html("<iframe id='abccc' allowtransparency='true' frameborder='0' scrolling='auto' allowfullscreen='' mozallowfullscreen='' webkitallowfullscreen='' src='/choice/2' data-focus='true'></iframe>");
|
|
|
$( ".addwp" ).draggable({ revert: true,axis: "x" });
|
|
|
- window.setInterval("reinitIframe()", 200);
|
|
|
+ //window.setInterval("reinitIframe()", 200);
|
|
|
+ //2026年7月16日 先采用B方案 修改定时器泄露
|
|
|
+ parent.reinitIframeTimer = window.setInterval(reinitIframe, 200);
|
|
|
$(".addful").show();
|
|
|
}
|
|
|
});
|