首页 > 代码库 > 如何修改iframe内的页面的元素的样式。。。。
如何修改iframe内的页面的元素的样式。。。。
方法一:
直接通过设置backgroundColor的颜色即可:
<!DOCTYPE html>
<html>
<head>
<script>
function changeStyle()
{
var x=document.getElementById("myframe");
var y=(x.contentWindow || x.contentDocument);
if (y.document)y=y.document;
y.body.style.backgroundColor="#0000ff";
}
</script>
</head>
<body>
<iframe id="myframe" src="http://www.mamicode.com/demo_iframe.htm">
<p>Your browser does not support iframes.</p>
</iframe>
<br><br>
<input type="button" onclick="changeStyle()"
value="http://www.mamicode.com/Change background color">
</body>
</html>
方法二:
<
script
>
function hideImg(i) {
var imgs = i.contentWindow.document.getElementsByTagName(‘img‘);
for(var i=0;i<
imgs.length
;i++)imgs[i]
.style.display
=
‘none‘
}
</script>
<iframe onload="hideImg(this)"
借用三:
http://blog.csdn.net/kaidishi/article/details/44588423
如何修改iframe内的页面的元素的样式。。。。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。