HTML DOM URL 屬性
定義和用法
URL 屬性可返回當前文檔的 URL。
語法
document.URL
說明
一般情況下,該屬性的值與包含文檔的 Window 的 location.href 屬性相同。不過,在 URL 重定向發(fā)生的時候,這個 URL 屬性保存了文檔的實際 URL,而 location.href 保存了請求的 URL。
實例
<html>
<body>
The URL of this document is:
<script type="text/javascript">
document.write(document.URL
)
</script>
</body>
</html>