源代码 :
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>开源教程(ossoft.cn)</title> <script> function removeBorder(){ document.getElementById("myframe").frameBorder="0"; } </script> </head> <body> <iframe id="myframe" src=""> <p>你的浏览器不支持iframes。</p> </iframe> <br><br> <input type="button" onclick="removeBorder()" value="移除边界"> <p><b>注意:</b> 该实例不能工作在IE浏览器。</p> </body> </html>
运行结果