JS返回iframe中frameBorder属性值的方法
疯狂一夏 人气:0本文实例讲述了JS返回iframe中frameBorder属性值的方法。分享给大家供大家参考。具体分析如下:
frameborder 属性规定是否显示框架周围的边框。
<!DOCTYPE html> <html> <body> <iframe id="myframe" src="https://img.qb5200.com/download-x/default.asp" frameborder="0"> <p>Your browser does not support iframes.</p> </iframe> <p>The frameborder is set to: <script> document.write(document.getElementById("myframe").frameBorder); </script> <p> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。
加载全部内容