> JavaScript中文手册 > document.URL

定义和用法

URL 属性可返回当前文档的 URL。

语法

document.URL

浏览器支持

document.URLdocument.URLdocument.URLdocument.URLdocument.URL

所有主要浏览器都支持 URL 属性

实例

实例

返回当前文档的完整URL:

<HTML>
<body>

The full URL of this document is:
<script>
document.write(document.URL);
</script>

</body>
</html>
运行一下 »
上一篇:
下一篇: