PHP程序员站--PHP编程开发平台
 当前位置:主页 >> 网页制作 >> Javascript >> 

jquery 父窗口子窗口相关操作

jquery 父窗口子窗口相关操作

来源:PHP程序员站  作者:PHP程序员站  发布时间:2011-06-28
一, js或者jQuery访问页面中的框架iframe. 注意:框架内的页面是不能跨域的! 假设有两个页面,在相同域下. 假设:父窗口 index.html ,有 id 为 subifrm 的 iframe 1. 在index.html执行JS直接访问子窗口中某元素 : Js代码 document.getElementById('subifrm').contentWin

一, js或者jQuery访问页面中的框架iframe.
注意:框架内的页面是不能跨域的! 假设有两个页面,在相同域下.

假设:父窗口  index.html ,有 id 为 subifrm 的 iframe


1. 在index.html执行JS直接访问子窗口中某元素 :

Js代码 
document.getElementById('subifrm').contentWindow.document.getElementById('test').style.color='red' 

document.getElementById('subifrm').contentWindow.document.getElementById('test').style.color='red'

2. 利用jquery 来访问子窗口

Js代码 
$("#subifrm").contents().find("#test").css('color','red'); 

$("#subifrm").contents().find("#test").css('color','red');


二, 用DOM方法与jquery方法结合的方式实现互动操作

1.在父窗口中操作 选中IFRAME中的所有单选钮

Js代码 
$(window.frames["iframe1"].document).find("input[@type='radio']").attr("checked","true"); 

$(window.frames["iframe1"].document).find("input[@type='radio']").attr("checked","true");


2.在IFRAME中操作 选中父窗口中的所有单选钮

Js代码 
$(window.parent.document).find("input[@type='radio']").attr("checked","true"); 

$(window.parent.document).find("input[@type='radio']").attr("checked","true");
 

三, 使用jquery操作iframe

1 页面里有两个ifame

Js代码 
<iframe id="leftiframe"></iframe>  
 
 
<iframe id="mainiframe></iframe> 

<iframe id="leftiframe"></iframe>


<iframe id="mainiframe></iframe>

 

leftiframe中jQuery改变mainiframe的src代码:

Js代码 
$("#mainframe",parent.document.body).attr("src","http://www.baidu.com") 

$("#mainframe",parent.document.body).attr("src","http://www.baidu.com") 
 

2、 如果内容里面有一个ID为mainiframe的ifame

Js代码 
<iframe id="mainifame"></ifame>  

<iframe id="mainifame"></ifame>  
ifame包含一个someID

Js代码 
<div id="someID">you want to get this content</div>  

<div id="someID">you want to get this content</div> 

得到someID的内容

Js代码 
$("#mainiframe").contents().find("someID").html();或者$("#mainiframe").contains().find("someID").text(); 

$("#mainiframe").contents().find("someID").html();或者$("#mainiframe").contains().find("someID").text(); 
2 、如上面所示
   leftiframe中的jQuery操作mainiframe的内容someID的内容

Js代码 
$("#mainframe",parent.document.body).contents().find("someID").html();或者 $("#mainframe",parent.document.body).contents().find("someID").val(); 


延伸阅读:
弹出窗口,背景变暗js效果
弹出窗口,背景变暗js特效源码
让js(javascript)关闭窗口无提示
网页特效:网页中间弹出窗口,背景变暗
jQuery浮动窗口插件 scrollFollow
jQuery通用dialog/popup窗口插件
javascript强行弹出窗口代码
Tags: jQuery   父窗口   子窗口  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号