URL: hash 属性

注意:此功能在 Web Workers 中可用。

hashURL 接口的字符串属性,包含一个 '#' 后跟 URL 的片段标识符。

片段不会被 百分比编码。如果 URL 没有片段标识符,此属性将包含一个空字符串 — ""

字符串。

示例

js
const url = new URL(
  "https://mdn.org.cn/en-US/docs/Web/API/URL/href#examples",
);
console.log(url.hash); // '#examples'

规范

规范
URL 标准
# dom-url-hash

浏览器兼容性

BCD 表仅在浏览器中加载

另请参见

  • 它所属的 URL 接口。