获取iframe外的document
Posted ~冰蝶~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取iframe外的document相关的知识,希望对你有一定的参考价值。
在iframe中点击弹出层外部分弹出层消失,但是点击iframe外部分就操作不了弹出层了,被这个问题困扰了不少时间,今天得以解决,代码如下:
说明:$(top.document,document).click()不可以实现,要按下面的方式实现。
$(top.document).click(function (e) { if(!$(e.target).closest("#sysSetListWrapper").length){ $(".sysSetListOuter").hide(); } }); $(document).click(function (e) { if(!$(e.target).closest("#sysSetListWrapper").length){ $(".sysSetListOuter").hide(); } });
以上是关于获取iframe外的document的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET中 iframe 点击里面的连接在iframe外的整个网页打开
jqueryjs调用iframe父窗口与子窗口元素的方法整理
jqueryjs调用iframe父窗口与子窗口元素的方法整理