HTML DOM 문서URI 속성
HTML DOM documentURI 속성
Instance
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p id="demo">单击按钮来显示该文档的位置</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var x=document.getElementById("demo"); x.innerHTML=document.documentURI; } </script> <p><strong>注意:</strong>Internet Explorer不支持documentURI属性。</p> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요.
정의 및 사용법
documentUR I 속성을 설정하거나 문서의 위치를 반환합니다.
문서가 DocumentImplementation 개체에 의해 생성되었거나 정의되지 않은 경우 null을 반환합니다.
브라우저 지원
Internet Explorer를 제외한 다른 브라우저는 documentURI 속성을 지원합니다.
Syntax
문서의 documentURI 설정:
document.documentURI=locationURI
문서 URI 반환:
document.documentURI
기술 세부 사항
반환 값: | String 은 문서의 URI를 나타냅니다. |
---|---|
DOM 버전 | 코어 레벨 3 문서 개체 |