HTMLAreaElement:origin 属性
HTMLAreaElement.origin
只读属性是一个字符串,包含表示的 URL 来源的 Unicode 序列化。
也就是说
- 对于使用
http
或https
的 URL,方案后跟'://'
,然后是域名,然后是':'
,然后是端口(如果显式指定,则分别为默认端口80
和443
); - 对于使用
file:
方案的 URL,值取决于浏览器; - 对于使用
blob:
方案的 URL,则为blob:
后面跟随的 URL 的来源。例如,"blob:https://mozilla.org"
的值为"https://mozilla.org".
值
字符串。
示例
js
// An <area id="myArea" href="https://mdn.org.cn/en-US/HTMLAreaElement"> element is in the document
const area = document.getElementById("myArea");
area.origin; // returns 'https://mdn.org.cn'
规范
规范 |
---|
HTML 标准 # dom-hyperlink-origin-dev |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。
另请参阅
- 它所属的
HTMLAreaElement
接口。