位置:href 属性

href 属性是 Location 接口的一个 字符串化器,它返回一个包含整个 URL 的字符串,并允许更新 href。

设置 href 的值将导航到提供的 URL。如果您想要重定向,请使用 location.replace()。与设置 href 属性值的区别在于,使用 location.replace() 方法后,在导航到给定 URL 后,当前页面将不会保存在会话 历史记录 中 - 这意味着用户将无法使用后退按钮导航回该页面。

字符串。

示例

js
// Lets imagine an <a id="myAnchor" href="https://mdn.org.cn/en-US/Location/href"> element is in the document
const anchor = document.getElementById("myAnchor");
const result = anchor.href; // Returns: 'https://mdn.org.cn/en-US/Location/href'

规范

规范
HTML 标准
# dom-location-href-dev

浏览器兼容性

BCD 表格仅在浏览器中加载