jquery inArray()

时间:2012-11-01 15:51:33

标签: jquery

  

可能重复:
  How to check if jQuery object exist in array?

有没有办法确定dom元素是否在dom元素数组中?

$(".container img").each(function(){
   views.push($(this).clone());
});

创建一个克隆图像元素数组。我现在想检查一个新的图像元素是否在该数组中?

由于

1 个答案:

答案 0 :(得分:2)

$(".container img").each(function(){
    if(jQuery.inArray($(this), views) === -1)
    {
        views.push($(this).clone());
    }
});

或检查How to check if jQuery object exist in array?以获取其他解决方案。

供您使用,请查看http://jsfiddle.net/hxAg4/34