欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jquery获取iframe中的dom对象(两种方法)

程序员文章站 2022-05-28 21:20:10
父窗口中操作iframe:$(window.frames["iframechild"].document) //假如iframe的id为iframechild 在子窗口中操作父...

父窗口中操作iframe:$(window.frames["iframechild"].document) //假如iframe的id为iframechild

在子窗口中操作父窗口:$(window.parent.document)

接下来就可以继续获取iframe内的dom了。

获取iframe内的dom对象有两种方法

1 $(window.frames["iframechild"].document).find("#child")
2 $("#child",window.frames["iframechild"].document)

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

. 代码如下:


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


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

. 代码如下:


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