HTMLAnchorElement:origin 属性
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
HTMLAnchorElement.origin
只读属性是一个字符串,包含所表示 URL 的来源的 Unicode 序列化形式。
即:
- 对于使用
http
或https
协议的 URL,协议后跟'://'
,然后是域名,再后跟':'
,最后是端口号(如果明确指定了端口号,则分别为默认的80
和443
); - 对于使用
file:
协议的 URL,值依赖于浏览器; - 对于使用
blob:
协议的 URL,blob:
后跟的 URL 的来源。例如,"blob:https://mozilla.org"
的origin
将是"https://mozilla.org"
。
值
一个字符串。
示例
js
// 文档中有一个 <a id="myAnchor" href="https://developer.mozilla.org/zh-CN/HTMLAnchorElement"> 元素
const anchor = document.getElementById("myAnchor");
anchor.origin; // 返回“https://developer.mozilla.org”
规范
Specification |
---|
HTML Standard # dom-hyperlink-origin-dev |
浏览器兼容性
BCD tables only load in the browser
参见
- 所属接口
HTMLAnchorElement
。