首页javascriptattrjQuery Method - 如何使用find()方法在同一个div中选择某个元素类型...

jQuery Method - 如何使用find()方法在同一个div中选择某个元素类型...

我们想知道如何使用find()方法在同一个div中选择某个元素类型。...


<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
    $(document).ready(function(){
          $("div[id]").one("click", function(){
              var idString = $(this).text() + " = " + $(this).attr("id");
              $(this).text(idString);
          });
    });
    </script>
  </head>
  <body>
      Click to see.
      <div>div</div>
      <div id="hey">div</div>
  </body>
</html>