Jquery 获取iframe 中元素并设置CSS问题
我有一个页面,页面中嵌入了一个iframe,iframe的id="wjiframe",iframe载入的页面中有一个divclass="embed-footer".如果通...
我有一个页面,页面中嵌入了一个iframe,iframe 的 id="wjiframe" ,iframe载入的页面中有一个 div class="embed-footer".
如果通过Jquery 获取这个div,并将其css设置为 disply:none。
$(function(){
$("#wjiframe").contents().find("div.embed-footer").css('display','none');
});
这样对吗?
谢谢 展开
如果通过Jquery 获取这个div,并将其css设置为 disply:none。
$(function(){
$("#wjiframe").contents().find("div.embed-footer").css('display','none');
});
这样对吗?
谢谢 展开
展开全部
iframe在复合文档中经常用到,利用jquery操作iframe可以大幅提高效率,这里收集一些基本操作,需要的朋友可以参考下。
DOM方法:
父窗口操作IFRAME:window.frames["iframeSon"].document
IFRAME操作父窗口:window.parent.document
jquery方法:
在父窗口中操作 选中IFRAME中的所有输入框:(window.frames["iframeSon"].document).find(":text");在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>
复制代码 代码如下:
<HTML xmlns="http://www.w3.org/1999/xhtml">
<HEAD>
<MCE:SCRIPT mce_src="js/jquery-1.2.6.js" src="../js/jquery-1.2.6.js" type="text/ecmascript"></MCE:SCRIPT>
<MCE:SCRIPT type="text/javascript"><!--
(function(){(function(){("#t1").hover(function(){alert('');}); //("iframe").contents().find("body").append("I′minaniframe!");//("iframe").contents().find("body").append("I′minaniframe!");//(window.frames["iframe1"].document).find("input[@type='text']").attr("size","30px"); //("#iframe1").contents().find("#d1").css('color','red'); //("#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>
<IFRAME id=iframe1 src="child.htm" mce_src="child.htm"></IFRAME>
<IFRAME height=100 src="child.htm" width=300 mce_src="child.htm"></IFRAME>
</DIV>
<DIV>
</DIV>
收集利用Jquery取得iframe中元素的几种方法 :
复制代码 代码如下:
$(document.getElementById('iframeId').contentWindow.document.body).htm()
显示iframe中body元素的内容。
复制代码 代码如下:
$("#testId", document.frames("iframename").document).html();
根据iframename取得其中ID为"testId"元素
复制代码 代码如下:
$(window.frames["iframeName"].document).find("#testId").html()
DOM方法:
父窗口操作IFRAME:window.frames["iframeSon"].document
IFRAME操作父窗口:window.parent.document
jquery方法:
在父窗口中操作 选中IFRAME中的所有输入框:(window.frames["iframeSon"].document).find(":text");在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>
复制代码 代码如下:
<HTML xmlns="http://www.w3.org/1999/xhtml">
<HEAD>
<MCE:SCRIPT mce_src="js/jquery-1.2.6.js" src="../js/jquery-1.2.6.js" type="text/ecmascript"></MCE:SCRIPT>
<MCE:SCRIPT type="text/javascript"><!--
(function(){(function(){("#t1").hover(function(){alert('');}); //("iframe").contents().find("body").append("I′minaniframe!");//("iframe").contents().find("body").append("I′minaniframe!");//(window.frames["iframe1"].document).find("input[@type='text']").attr("size","30px"); //("#iframe1").contents().find("#d1").css('color','red'); //("#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>
<IFRAME id=iframe1 src="child.htm" mce_src="child.htm"></IFRAME>
<IFRAME height=100 src="child.htm" width=300 mce_src="child.htm"></IFRAME>
</DIV>
<DIV>
</DIV>
收集利用Jquery取得iframe中元素的几种方法 :
复制代码 代码如下:
$(document.getElementById('iframeId').contentWindow.document.body).htm()
显示iframe中body元素的内容。
复制代码 代码如下:
$("#testId", document.frames("iframename").document).html();
根据iframename取得其中ID为"testId"元素
复制代码 代码如下:
$(window.frames["iframeName"].document).find("#testId").html()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不对。
iframe资源是异步加载的,所以还要监听它的资源加载完成才能操作。用load方法:
$(function(){
$("#wjiframe").load(function(){
$(this).contents().find("div.embed-footer").css('display','none');
});
});
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |