Anchor type 屬性
Anchor對象定義和用法
type 屬性可設(shè)置或返回被鏈資源的 MIME 類型。
type 屬性描述了鏈接文檔的 MIME 類型。
語法
設(shè)置 type 屬性:
anchorObject.type="MIME-type"
返回 type 屬性:
anchorObject.type
值 | 描述 |
---|---|
MIME-type | 描述鏈接文檔的 MIME 類型。 更多關(guān)于 MIME 類型請查看 IANA MIME types |
瀏覽器支持
所有主要瀏覽器都支持 type 屬性
實例
實例
下面的例子可返回被鏈資源的 MIME 類型:
<html>
<body>
<p><a id="w3s" type="text/html"
href="http://hgci.cn">W3Cschools</a></p>
<script>
document.write(document.getElementById("w3s").type);
</script>
</body>
</html>
<body>
<p><a id="w3s" type="text/html"
href="http://hgci.cn">W3Cschools</a></p>
<script>
document.write(document.getElementById("w3s").type);
</script>
</body>
</html>
以上實例輸出結(jié)果:
text/html
嘗試一下 ?
Anchor對象
更多建議: