jQuery length プロパティ

❮ jQuery Properties

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

$("button").click(function(){
    alert($("li").length);
});
Try it Yourself »

定義と用法

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


構文

$(selector).length

❮ jQuery Properties