怎么修改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文档中修改
展开
 我来答
198901245631
推荐于2016-03-15 · TA获得超过3.5万个赞
知道大有可为答主
回答量:9037
采纳率:92%
帮助的人:1736万
展开全部
直接通过设置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>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
LEADLEON
推荐于2016-12-01 · TA获得超过469个赞
知道小有建树答主
回答量:1196
采纳率:0%
帮助的人:676万
展开全部
<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>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
skycaogai
2009-11-02 · TA获得超过315个赞
知道答主
回答量:164
采纳率:0%
帮助的人:119万
展开全部
在里面加background-color:#red;
不行那就只能用样式了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式