当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery .length用法及代码示例


用法
length => Integer

说明:jQuery 对象中的元素数量。

  • 添加的版本:1.0length

当前匹配的元素数。这 。 size() 方法将返回相同的值。

例子:

计算 div。点击添加更多。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>length demo</title>
  <style>
  body {
    cursor: pointer;
  }
  div {
    width: 50px;
    height: 30px;
    margin: 5px;
    float: left;
    background: green;
  }
  span {
    color: red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
  <span></span>
  <div></div>
<script>
$( document.body )
  .click(function() {
    $( document.body ).append( $( "<div>" ) );
    var n = $( "div" ).length;
    $( "span" ).text( "There are " + n + " divs." +
      "Click to add more.");
  })
  // Trigger the click to start
  .trigger( "click" );
</script>
 
</body>
</html>

演示:

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 .length。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。