欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM hash 屬性

定義和用法

hash 屬性是一個可讀可寫的字符串,該字符串是 URL 的錨部分(從 # 號開始的部分)。

語法

location.hash=anchorname

實例

假設(shè)當前的 URL 是: http://example.com:1234/test.htm#part2:

<html>
<body>

<script type="text/javascript">
document.write(location.hash);
</script>

</body>
</html>

輸出:

#part2

TIY

使用 location 對象的 hash 屬性
錨的數(shù)組
本例打開兩個窗口。第一個窗口中包含四個按鈕。第二個窗口定義了四個錨。當點擊第一個窗口中的某個按鈕時,onclick 事件句柄會到達第二個窗口指定的錨。