当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Anchor type属性用法及代码示例


与锚标记关联的 HTML DOM type 属性用于设置或获取链接的 type 属性的值。此属性是在 HTML 5 中引入的。此属性也仅用于提示性原因,并非必须包含。它包含单个 MIME(多用途 Internet 邮件扩展)值类型。

用法

以下是语法 -

返回类型属性 -

anchorObject.type

设置类型属性 -

anchorObject.type = MIME-type

示例

让我们看一个锚文本属性的例子 -

<!DOCTYPE html>
<html>
<body>
<p><a id="Anchor" type="text/html" href="https://www.examplesite.com">example site</a></p>
<p><a id="Anchor2" href="https://www.example.com">example</a></p>
<p>Click the buttons to set and get the type attribute.</p>
<button onclick="getType1()">GetType</button>
<button onclick="setType2()">SetType</button>
<p id="Type1"></p>
<script>
   function getType1() {
      var x = document.getElementById("Anchor").type;
      document.getElementById("Type1").innerHTML = x;
   }
   function setType2(){
      document.getElementById("Type1").innerHTML="Type has been set";
      document.getElementById("Anchor2").type="text/html";
   }
</script>
</body>
</html>

输出

这将产生以下输出 -

单击 GetType 按钮时 -

单击 SetType 按钮 -

在上面的例子中 -

我们分别取了两个 id 为 Anchor 和 Anchor2 的链接。 Anchor1 具有与之关联的 MIME 类型 text/html 而 Anchor2 没有任何与其关联的 MIME 类型。

<p><a id="Anchor" type="text/html" href="https://www.examplesite.com">example site</a></p>
<p><a id="Anchor2" href="https://www.example.com">example</a></p>

然后我们有两个按钮 GetType 和 SetType 来分别执行函数 getType1() 和 getType2()。

<button onclick="getType1()">GetType</button>
<button onclick="setType2()">SetType</button>

getType1() 函数返回带有关联 id “Anchor” 的锚标记的类型。 setType2() 函数将 id 为 “Anchor2” 的锚标签的类型设置为 text/html。

function getType1() {
   var x = document.getElementById("Anchor").type;
   document.getElementById("Type1").innerHTML = x;
}
function setType2(){
   document.getElementById("Type1").innerHTML="Type has been set";
   document.getElementById("Anchor2").type="text/html";
}

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Anchor type Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。