简单教程
提交运行
代码编辑器:
<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> <iframe id="myframe" src="/static/media/html/demo_iframe.html"> <p>你的浏览器不支持iframes</p> </iframe> <br><br> <input type="button" onclick="changeStyle()" value="修改背景颜色">
运行结果: