URL hash 屬性
hash 屬性放回當前 url 的錨部分,也就是 # 和其後面的部分。
關於URL 物件知識參閱 URL 物件 一章節。
語法結構:
[JavaScript] 純文字檢視 複製程式碼string = url .hash; url.hash = string;
程式碼例項:
[JavaScript] 純文字檢視 複製程式碼執行程式碼let url = new URL("https://www.softwhy.com/article-9.html#ant=top"); console.log(url.hash);
程式碼執行效果截圖如下:
hash 屬性返回當前 url 的 # 號和器後面的部分。
[JavaScript] 純文字檢視 複製程式碼執行程式碼let url = new URL("https://www.softwhy.com/article-9.html#ant=top"); url.hash = "#softwhy=hi"; console.log(url.hash); console.log(url.href);
程式碼執行效果截圖如下:
可以讀寫屬性,所以可以重新設定 url 的hash 屬性值。
相關文章
- URL href 屬性
- URL protocol 屬性Protocol
- URL host 屬性
- URL search 屬性
- URL port 屬性
- URL username 屬性
- URL hostname 屬性
- URL pathname 屬性
- URL password 屬性
- URL searchParams 屬性
- URL origin 屬性
- url中#(hash)的含義
- CMake 屬性之全域性屬性
- defer 屬性和 async 屬性
- 一致性Hash
- CSS 屬性篇(七):Display屬性CSS
- CMake 屬性之目錄屬性
- CMake 屬性之目標屬性
- 一致性 hash 環
- Python - 物件導向程式設計 - 公共屬性、保護屬性、私有屬性Python物件程式設計
- CSS字型屬性和文字屬性詳解CSS
- Python 類的屬性與例項屬性Python
- python物件屬性管理(2):property管理屬性Python物件
- 根據屬性字串獲取屬性值字串
- CAD屬性編輯操作——物件屬性教程物件
- 強一致性hash實現java版本及強一致性hash原理Java
- cssRules 屬性CSS
- previousElementSibling 屬性
- translucent屬性
- parentRule 屬性
- parentStyleSheet屬性
- cssText 屬性CSS
- Property屬性
- 私有屬性
- background屬性
- allowfullscreen 屬性
- ref屬性
- HTML 屬性HTML