有没有办法确定dom元素是否在dom元素数组中?
即
$(".container img").each(function(){
views.push($(this).clone());
});
创建一个克隆图像元素数组。我现在想检查一个新的图像元素是否在该数组中?
由于
答案 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