jQuery length 属性
length 属性包含 jQuery 对象中元素的数目。
1. 语法
$(selector).length
2. 范例
输出 <li> 元素的数目:
$("button").click(function(){ alert($("li").length); });
length 属性包含 jQuery 对象中元素的数目。
$(selector).length
输出 <li> 元素的数目:
$("button").click(function(){ alert($("li").length); });