简单教程
提交运行
代码编辑器:
<script> function changeSize(){ document.getElementById("myframe").height="300"; document.getElementById("myframe").width="300"; } </script> <iframe id="myframe" src="/static/media/html/demo_iframe.html" height="200" width="200"> <p>你的浏览器不支持iframes</p> </iframe> <br><br> <input type="button" onclick="changeSize()" value="修改大小">
运行结果: