使用时有点麻烦:
$('.instrumentSelect').click(function(){
var thisElement = $(this).index();
$('.instrumentSelect').eq(thisElement).addClass('active');
$('.active').removeClass('active');
});
删除类就好了,我控制台记录var thisElement
并返回正确的索引,只是没有将类附加到它。火虫不返回错误。