如何在 JavaScript 中搜索链接的 target 属性值?

htmljavascriptprogramming scripts

要在 JavaScript 中搜索链接的 target 属性值,请使用 target  属性。您可以尝试运行以下代码来获取 target 属性的值。

示例

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

相关文章