Home >Backend Development >PHP Tutorial >一个层的定位有关问题
求助一个层的定位问题
一个后台页面,
内空页面是在一个iframe里面显示的。
现在在内容页面,要加一个浮动层(显示一个等待的效果)。
结果那一个层只覆盖了内容页框架的内容。
我的要示是:覆盖整个页面,(也就是说,浮动层可以覆盖框架外的内容),
我该怎么做。
我想这样写了
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->#load{padding:10px; width:600px;height:300px; display:block; position: absolute; top:50%; left:50%; margin-left:-300px; margin-top:-150px;}
<!--index.php--><script type="text/javascript" src="javascript/jquery_1.4.2.js"></script><div id="ifr"> <iframe id="iframe" name="showMap" width="100%" height="600" src="map.php"></iframe><br><font color="#e78608">------解决方案--------------------</font><br>你们要是真心的帮助LZ,那么就请贴出可供测试的代码<br>否则,我就要将此贴移动了<br><font color="#e78608">------解决方案--------------------</font><br>好吧,我承认是着急了点,还是把上面的帖子移除吧,这是个可测试的:<br>在iframe的父级页面和元素页面必须都连接上<script type="text/javascript" src="jquery_1.4.2.js"></script> 才管用<br><dl class="code">HTML code<pre class="brush:php;toolbar:false"><!--index.html--><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>无标题文档</title><script type="text/javascript" src="jquery_1.4.2.js"></script> <div id="show3dmap" style="border:solid 1px">此div的宽高与body相当 <div id="ifr"> <iframe id="iframe" name="show" width="100%" height="600" src="cont.html"></iframe> </div> </div><!--cont.html--><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>无标题文档</title><script type="text/javascript" src="jquery_1.4.2.js"></script><div>这是子页面<input type="button" id="full" value="点击覆盖"><input type="button" id="replace" value="点击替换父级div"> </div><script>$("#replace").live("click",function(){ $(window.parent.document).find("#iframe").css({'display':'none','visibility':'hidden'}); $(window.parent.document).find("#show3dmap").html("<div id='rep' style='width:1200px;height:1000px;z-index:2;'>"+ "这里替换内容</script>