怎么修改iframe内的背景颜色
比如我要加入天气的代码<iframesrc="http://m.weather.com.cn/m/pn12/weather.htm"width="245"height="...
比如我要加入天气的代码<iframe src="http://m.weather.com.cn/m/pn12/weather.htm " width="245" height="110" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>
框架内显示的是白色,而我的网页页面背景是非白色的。怎么修改或增加代码,使得iframe内的背景颜色跟网页页面颜色一致?前提是我不能增加一CSS文档重写http://m.weather.com.cn/m/pn12/weather.htm 的CSS,我只能在我的html文档中修改 展开
框架内显示的是白色,而我的网页页面背景是非白色的。怎么修改或增加代码,使得iframe内的背景颜色跟网页页面颜色一致?前提是我不能增加一CSS文档重写http://m.weather.com.cn/m/pn12/weather.htm 的CSS,我只能在我的html文档中修改 展开
3个回答
展开全部
直接通过设置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="demo_iframe.htm">
<p>Your browser does not support iframes.</p>
</iframe>
<br><br>
<input type="button" onclick="changeStyle()"
value="Change background color">
</body>
</html>
<!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="demo_iframe.htm">
<p>Your browser does not support iframes.</p>
</iframe>
<br><br>
<input type="button" onclick="changeStyle()"
value="Change background color">
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<iframe src="http://m.weather.com.cn/m/pn12/weather.htm " allowtransparency="true" width="245" height="110" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在里面加background-color:#red;
不行那就只能用样式了。
不行那就只能用样式了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询