为什么索引不对,弹出来总是2
getIndexOf:function(currentId){
var index=0;
$(this.groupDate).each(function(i){
index=i;
if(this.id === currentId){
return false;
};
});
return index;
},