HTML DOM href 屬性
定義和用法
href 屬性是一個可讀可寫的字符串,可設(shè)置或返回當(dāng)前顯示的文檔的完整 URL。
因此,我們可以通過為該屬性設(shè)置新的 URL,使瀏覽器讀取并顯示新的 URL 的內(nèi)容。
語法
location.href=URL
實(shí)例
假設(shè)當(dāng)前的 URL 是: http://example.com:1234/test.htm#part2:
<html>
<body>
<script type="text/javascript">
document.write(location.href
);
</script>
</body>
</html>
輸出:
http://example.com:1234/test.htm#part2