如何在 JavaScript 中获取链接的 type 属性值?


要获取 JavaScript 中链接的 type 属性值,请使用 type 属性。type 属性用于说明文档是 html(text/html)还是 css(text/css)等。

示例

你可以尝试运行以下代码来获取链接的 type 属性值。

在线演示

<!DOCTYPE html>
<html>
   <body>
      <p><a id="anchorid" type="text/html" target= "_blank" href="https://www.qries.com/">Qries</a></p>
      <script>
         var myVal = document.getElementById("anchorid").type;
         document.write("Value of type attribute: "+myVal);
      </script>
   </body>
</html>

更新于:20-May-2020

458 次浏览

点亮你的 职业生涯

通过完成课程获得认证

开始吧
广告