JS获取iframe中longdesc属性的方法

本文实例讲述了JS获取iframe中longdesc属性的方法。分享给大家供大家参考。具体如下:

longdesc 属性指向一个包含描述信息的页面。

<!DOCTYPE html> <html> <body> <iframe src="https://www.jb51.net/default.asp" longdesc="jb51.net"> <p>Your browser does not support iframes.</p> </iframe> <p>The URL of the long description is: <script> document.write(document.getElementById("myframe").longDesc); </script> <p> </body> </html>

上面的代码返回如下结果:The URL of the long description is:jb51.net

希望本文所述对大家的javascript程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgjpyy.html