jQueryのeachを使ってページの指定箇所内にあるリスト(li)タグの要素数をカウントし、カウント数を表示する方法をご紹介します。 liタグの要素数をカウント表示するCSS記述 ※リスト(li)タグの要素数出力先(.clTxt)のCSS記述です。必要に応じて変更して下さい。 <style type="text/css"> <!-- .cWrap{ width:900px; margin:0 auto; } .clLiWrap{ width:220px; margin:0 auto; text-align:left; } .clTxt{ font-weight:bold; padding:5px 0; } --> </style> jQueryの.each()でliタグ要素数をカウントし、カウント結果を出力するJavaScritpの記述 ※.each()でliタグ要素数をカウントし、カウ