HTMLAreaElement:hostname 属性
HTMLAreaElement.hostname
属性是一个包含 URL 域名的字符串。
值
一个包含与 area
元素关联的 URL 域名的字符串。它可以同时用作 setter 和 getter。
示例
html
<textarea id="log" rows="4" cols="100"></textarea>
<map name="infographic">
<area
id="area1"
shape="rect"
coords="184,6,253,27"
href="/en-US/docs/HTMLAreaElement"
target="_blank"
alt="Mozilla" />
<area
id="area2"
shape="circle"
coords="130,136,60"
href="https://coolexample.com/"
target="_blank"
alt="MDN" />
</map>
js
// An element is in the document
const area1 = document.getElementById("area1");
const area2 = document.getElementById("area2");
const log = document.getElementById("log");
log.textContent = `area1 hostname: ${area1.hostname} \n`; // 'developer.mozilla.org'
log.textContent += `area2 hostname: ${area2.hostname}`; // 'coolexample.com'
规范
规范 |
---|
HTML 标准 # dom-hyperlink-hostname-dev |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。
另请参阅
- 它所属的
HTMLAreaElement
接口。