代码示例:(标识:htmldom_anchor_type_1)
<!DOCTYPE html>
<html>
<body>

<p><a id="myAnchor" type="text/html" href="https://www.sou-xun.com/">(www.sou-xun.com)</a></p>

<p>单击该按钮可显示上面链接的 type 属性的值。</p>

<button onclick="myFunction()">试一试</button>

<p id="demo"></p>

<script>
function myFunction() {
  var x = document.getElementById("myAnchor").type;
  document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>
运行结果: