如何在 jQuery 中使用 attr() 方法来获取属性的 value?


jQuery attr() 方法用于获取属性的值(例如href)。将属性作为 attr() 方法的参数提及。

你可以尝试运行以下代码,了解如何使用 attr() 方法获取属性的值

示例

动态演示

<html>
   <head>
      <title>Selector Example</title>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $(document).ready(function(){
             $("button").click(function(){
                 alert($("#tpoint").attr("href"));
             });
         });
      </script>
   </head>
   <body>
      <p><a href="https://tutorialspoint.com" id="tpoint"> Website tutorialspoint</a></p>
      <button>Show complete link</button>
   </body>
</html>

更新于: 13-Feb-2020

362 次浏览

开启你的职业生涯

完成课程,取得认证

开始吧
广告