最新のWeb開発のチュートリアル
 

jQuery length Property

<jQueryのプロパティ

多数のアラート<li>要素を:

$("button").click(function(){
    alert($("li").length);
});
»それを自分で試してみてください

定義と使用法

lengthプロパティは、jQueryオブジェクトの要素数が含まれています。


構文

$(selector).length

<jQueryのプロパティ