怎么修改iframe内的背景颜色
发布网友
发布时间:2022-05-12 23:26
我来回答
共4个回答
热心网友
时间:2022-05-13 00:55
直接通过设置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>
热心网友
时间:2022-05-13 02:13
<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>
热心网友
时间:2022-05-13 03:48
在里面加background-color:#red;
不行那就只能用样式了。