JavaScript 参考手册
Frame/IFrame frameBorder 属性
移除 frameborder
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <script> function removeBorder() { document.getElementById("myframe").frameBorder = "0"; } </script> </head> <body> <iframe id="myframe" src="https://www.mifengjc.com"> <p>你的浏览器不支持iframes。</p> </iframe> <br><br> <input type="button" onclick="removeBorder()" value="移除边界"> <p><b>注意:</b> 该实例不能工作在IE浏览器。</p> </body> </html>
运行结果:
点击运行 »