javascript定义框架页背景色代码

时间:2015-04-01 20:09:45   收藏:0   阅读:284
javascript定义框架页背景色代码

<!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>


本文出自 “赚的多不多” 博客,请务必保留此出处http://10068168.blog.51cto.com/10058168/1627405

原文:http://10068168.blog.51cto.com/10058168/1627405

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!