当前位置: 代码迷 >> Web前端 >> jQuery统制IFRAME父窗口元素
  详细解决方案

jQuery统制IFRAME父窗口元素

热度:104   发布时间:2012-11-25 11:44:31.0
jQuery控制IFRAME父窗口元素

?

?iframe在复合文档中经常用到,利用jquery操作iframe可以大幅提高效率,这里收集一些基本操作

DOM方法:
父窗口操作IFRAME:window.frames["iframeSon"].document
IFRAME操作父窗口: window.parent.document
?
jquery方法:
在父窗口中操作 选中IFRAME中的所有输入框: $(window.frames["iframeSon"].document).find(":text");
在IFRAME中操作 选中父窗口中的所有输入框:$(window.parent.document).find(":text");
?
iframe框架的HTML:<iframe src="test.html" id="iframeSon" width="700″ height="300″ frameborder="0″ scrolling="auto"></iframe>
?
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>
?
?? ?
?? ?
?? ? ? ?
?? ?<mce:script type="text/ecmascript" src="../js/jquery-1.2.6.js" mce_src="js/jquery-1.2.6.js"></mce:script> ??
?? ?<mce:script type="text/javascript"><!-- ??
?? ?
?? ? ? ?$(function(){ ? ?
?? ? ? ? ? ?$("#t1").hover(function(){alert('');}); ? ?
?? ? ? ? ? ?//$("iframe").contents().find("body").append("I'm in an iframe!"); ? ??
?? ? ? ? ? ?//$(window.frames["iframe1"].document).find("input[@type='text']").attr("size","30px"); ? ?
?? ? ? ? ? ?//$("#iframe1").contents().find("#d1").css('color','red'); ? ?
?? ? ? ? ? ?//$(window.frames["iframe1"].document).find("input[@name='t1']").css({background:"#369"}); ? ?
?? ? ? ? ? ?//$("#iframe1").src("test.html"); ? ?
?? ? ? ?}); ? ?
?? ? ? ?
// --></mce:script> ??
?? ?
<div> ??
<input id="t1" type="text"> ??
<iframe id="iframe1" src="child.htm" mce_src="child.htm"></iframe> ??
<iframe src="child.htm" mce_src="child.htm" height="100" width="300"></iframe> ??
</div> ??
<div> ??
</div> ??
  相关解决方案