jQuery length 属性

jQuery 属性

length属性返回jQuery对象中元素的数量。

语法:

$(selector).length

示例

提醒段落数:

$("button").click(function(){
  alert($("p").length);
});
测试看看‹/›

计算DIV。点击添加更多:

这里有两个div。单击此处添加更多DIV盒子

运行代码

jQuery 属性