首页 > 代码库 > javascript跨框架显示div
javascript跨框架显示div
项目中碰到需要跨框架显示div的问题,百度了一下,搜集了一下群众的智慧,特整理出下面这个例子,先看看效果图:
本例共有4个页面:
index.html
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><style>.popDiv{ position:absolute; float:left; width:300px; height:300px; background-color:#f7f7f7; top:50; left:25; display:none; z-index:2;}</style></head> <body> <div id='popId' class='popDiv'>the test div float over iframe.</div> <iframe src=http://www.mamicode.com/"frame.html" width=100% height=100% marginwidth=0></iframe>>
frame.html
<frameset rows="74,*" cols="*" style="z-index:1"> <frame src=http://www.mamicode.com/"frame-top.html" style="z-index:1">>
frame-top.html
<a href=http://www.mamicode.com/"#" onclick="top.document.getElementById('popId').style.display='block'">show div
frame-main.htmlI'm main frame
页面建立好,直接打开index.html即可看到效果。具体原理就是通过在父页面设置好div,从frame内部调用父页面的div来显示javascript跨框架显示div
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。