码迷,mamicode.com
首页 > 编程语言 > 详细

javascript跨框架显示div

时间:2014-12-23 19:33:55      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:

项目中碰到需要跨框架显示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="frame.html" width=100% height=100% marginwidth=0></iframe>
 </body>
 </html>

 

frame.html

<frameset rows="74,*" cols="*" style="z-index:1">
        <frame src="frame-top.html" style="z-index:1">
        <frame src="frame-main.html" style="z-index:1">
 </frameset>
<noframes></noframes>

 

frame-top.html

<a href="#" onclick="top.document.getElementById('popId').style.display='block'">show div</a>


frame-main.html

I'm main frame

页面建立好,直接打开index.html即可看到效果。具体原理就是通过在父页面设置好div,从frame内部调用父页面的div来显示

javascript跨框架显示div

标签:

原文地址:http://blog.csdn.net/xhbmj/article/details/42105857

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!