首页 > 代码库 > 获取iframe外的document
获取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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。