当前位置: 代码迷 >> Web前端 >> iframe里操作父窗口的元素(以及IE上iframe透明处理)
  详细解决方案

iframe里操作父窗口的元素(以及IE上iframe透明处理)

热度:101   发布时间:2012-10-07 17:28:51.0
iframe里操作父窗口的元素(以及IE下iframe透明处理)
只好用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>

透明处理<iframe src="{{$root_url}}/activity.php?m=free_order&a=iframe" allowTransparency="true" frameborder=0 name='iframe1' style="background:none; height:30px"></iframe>
  相关解决方案