이 기사의 예에서는 iframe에서 longdesc 속성을 얻는 JS 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
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>
위 코드는 다음 결과를 반환합니다. 긴 설명의 URL은 다음과 같습니다:jb51.net
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.