文档:URL 属性
URL
是 Document
接口的一个只读属性,它返回文档位置的字符串。
值
包含文档 URL 的字符串。
示例
JavaScript
js
document.getElementById("url").textContent = document.URL;
HTML
html
<p id="urlText">
URL:<br />
<span id="url">URL goes here</span>
</p>
结果
规范
规范 |
---|
DOM 标准 # ref-for-dom-document-url① |
浏览器兼容性
BCD 表格仅在浏览器中加载
另请参阅
- 返回相同值的
document.documentURI
属性。