如何获得 $(this) 选择器的子元素?


要获得 jQuery 中 $(this) 选择器的子元素,请将 find() 方法与 each() 方法结合使用。我们先来看看如何添加 jQuery

示例

你可以尝试运行以下代码以获得 $(this) 选择器的子元素

实战演示

<html>
   <head>
      <title>jQuery Example</title>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>

         // Set the click handler on your div
         $("body").off("click", "#mydiv").on("click", "#mydiv", function() {
         
           // Find the image using.find() and .each()
           $(this).find("img").each(function() {
         
              var img = this;
         
           });
         });
         
      </script>
      <style>
         #mydiv {
            vertical-align: middle;
            background-color: #Ffff76;
            cursor: pointer;
            padding: 20px;
         }
      </style>
   </head>
   <body>
      <div id="mydiv">
         <img src="/green/images/logo.png" width="300" height="100"/>
      </div>
   </body>
</html>

更新于: 2019-12-18

79 次查看

开启你的职业生涯

通过完成该课程获得认证

立即开始
广告