jQuery length 属性

实例

提示 <li> 元素的数量:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").click(function(){
  8. alert($("li").length);
  9. });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14. <button>提示元素的数量</button>
  15. <ul>
  16. <li>Coffee</li>
  17. <li>Milk</li>
  18. <li>Soda</li>
  19. </ul>
  20. </body>
  21. </html>

定义与用法

length 属性包含 jQuery 对象中的元素数。


语法

  1. $(selector).length

分类导航