实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function changeStyle()
6
{
7
var x=document.getElementById("myframe");
8
var y=(x.contentWindow || x.contentDocument);
9
if (y.document)y=y.document;
10
y.body.style.backgroundColor="#0000ff";
11
}
12
</script>
13
</head>
14
<body>
15
16
<iframe id="myframe" src="demo_iframe.htm">
17
<p>Your browser does not support iframes.</p>
18
</iframe>
19
<br><br>
20
21
<input type="button" onclick="changeStyle()" value="Change background color">
22
23
</body>
24
</html>