JQuery跨Iframe选择实现代码
时间:2021-05-08 09:04:49|栏目:jquery|点击: 次
从父页面中选择iframe中的元素:
$('#btnCancel',$('#PopFrame')[0].contentWindow.document)
从iframe页面中选择父页面中的元素:
$("#PopContainer",parent.document)
以下内容是别的网友的解决方法:
只好用DOM方法与jquery方法结合的方式实现了
1.在父窗口中操作 选中IFRAME中的所有单选钮
$(window.frames["iframe1"].document).find("input[@type='radio']").attr("checked","true");
2.在IFRAME中操作 选中父窗口中的所有单选钮
$(window.parent.document).find("input[@type='radio']").attr("checked","true");
iframe框架的:<iframe src="test.html" id="iframe1" width="700" height="300" frameborder="0" scrolling="auto"></iframe>
IE7中测试通过
复制代码 代码如下:
$('#btnCancel',$('#PopFrame')[0].contentWindow.document)
从iframe页面中选择父页面中的元素:
复制代码 代码如下:
$("#PopContainer",parent.document)
以下内容是别的网友的解决方法:
只好用DOM方法与jquery方法结合的方式实现了
1.在父窗口中操作 选中IFRAME中的所有单选钮
$(window.frames["iframe1"].document).find("input[@type='radio']").attr("checked","true");
2.在IFRAME中操作 选中父窗口中的所有单选钮
$(window.parent.document).find("input[@type='radio']").attr("checked","true");
iframe框架的:<iframe src="test.html" id="iframe1" width="700" height="300" frameborder="0" scrolling="auto"></iframe>
IE7中测试通过
上一篇:基于MVC5和Bootstrap的jQuery TreeView树形控件(二)之数据支持json字符串、list集合
栏 目:jquery
本文标题:JQuery跨Iframe选择实现代码
本文地址:http://www.codeinn.net/misctech/116896.html