如何在jQuery中获取属性值?

在jQuery中获取属性值非常容易。为此,请使用jQueryattr()方法。您可以尝试运行以下代码以了解如何在jQuery中获取属性值-

示例

<html>

   <head>
      <title>jQuery Example</title>
      <script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

      <script>
      $(document).ready(function(){
         $("button").click(function(){
            alert($("img").attr("height"));
         });
      });
      </script>
   </head>
   
   <body>
      <img src="/green/images/logo.png" alt="logo" width="350" height="120"><br>
      <button>Get the height</button>
   </body>
   
</html>