父窗口中操作iframe$(windowframes["iframeChild"]document) //假如iframe的id为iframeChild
在子窗口中操作父窗口$(windowparentdocument)
接下来就可以继续获取iframe内的dom了
获取iframe内的dom对象有两种方法
$(windowframes["iframeChild"]document)find("#child")
$("#child"windowframes["iframeChild"]document)
在父窗口中操作 选中IFRAME中的所有单选按钮
复制代码 代码如下:
$(window
frames["iframeChild"]
document)
find("input[@type=
radio
]")
attr("checked"
"true");
在IFRAME中操作 选中父窗口中的所有单选按钮
复制代码 代码如下:
$(windowparentdocument)find("input[@type=radio]")attr("checked""true");