HTMLAnchorElement:type 属性
基线 广泛可用
此功能已得到良好建立,并在许多设备和浏览器版本中均可使用。自 2015 年 7 月.
报告反馈
type
属性是 HTMLAnchorElement
接口的字符串,表示链接资源的 MIME 类型。
值
它反映了 <a>
元素的 type
属性。
示例
字符串。
<a id="exampleLink" href="https://example.com" type="text/html">Example Link</a>
<p class="type"></p>
html
#exampleLink {
font-size: 1.5rem;
}
css
const anchorElement = document.getElementById("exampleLink");
const pTag = document.querySelector(".type");
console.log(anchorElement.type); // Output: "text/html"
pTag.textContent = anchorElement.type;
规范
js |
---|
规范 # HTML 标准 |
浏览器兼容性
dom-a-type
另请参阅
- 启用 JavaScript 以查看数据。
HTMLLinkElement.type
属性HTMLSourceElement.type
属性