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