如何在 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>
广告