通过iframe触发器重置onbeforeunload

时间:2015-01-04 08:19:57

标签: jquery iframe

我有一个通过JS动态加载的iframe,这是来自不同的域,但我似乎无法通过以下代码重置onbeforeunload:

$("iframe button").click(function(){
                window.onbeforeunload = null;
            });

            $(document).on("click", "iframe button",function(){
                window.parent.onbeforeunload = null;
            });

我尝试了不同的变化,任何帮助都会受到赞赏。

0 个答案:

没有答案