获取父div jquery中的元素编号

时间:2012-02-28 14:24:45

标签: jquery size

我有一个包含许多图像的div:

<div id="#preview_images_gallery">
 <img class="image_url pager" src="image1.jpg">
 <img class="image_url pager" src="image2.jpg"> 
 <img class="image_url pager" src="image3.jpg">
 .
 .
 .
</div>

如何通过jquery知道此div中包含的图像数量?

5 个答案:

答案 0 :(得分:6)

$("#preview_images_gallery > img").size()

关于第二个想法

  $("#preview_images_gallery > img").length

答案 1 :(得分:1)

$('#preview_images_gallery > img').length

答案 2 :(得分:1)

var imagecount = $('#preview_images_gallery img').length

jQuery集合的length属性。

注意:您应该将您的div ID从#preview_images_gallery更改为preview_images_gallery

答案 3 :(得分:1)

alert($("#preview_images_gallery img").length);//return numbers of images inside preview_images_gallery 

答案 4 :(得分:1)

这就是你可以用javascript方式计算img的方法:

var get=document.getElementById('preview_images_gallery');
var allget=get.getElementsByTagName('img');
alert(allget.length);