我想将一个类添加到元素数组的特定元素中,但是我想基于for循环的变量添加它,而不仅仅是一个随机数,如果我有,则将它添加到多个元素中to,但重点是,我需要使用给我的变量搜索元素!
HashMap
谢谢!
答案 0 :(得分:0)
看起来您的数组是一个div数组,如果是这样,您可以使用您的数组而不是类作为您的jQuery对象来改变类,因此
for(var a = 0; a < array.length; a++){
$('.results').append('some html divs here');
if(array[a].id == $.cookie('userId')){
array[a].addClass('disabled');
}
}