本文實例講述了JS取得iframe中longdesc屬性的方法。分享給大家供大家參考。具體如下:
longdesc 屬性指向一個包含描述資訊的頁面。
<!DOCTYPE html> <html> <body> <iframe id="myframe" src="/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程式設計有所幫助。