$('td', row).eq(0).addClass('strong text-info');
$('td', row).eq(1).addClass('strong text-info');
To combine the above as one line, add a jQuery plugin through (place anywhere in $(document).ready before using):
$.fn.eqAnyOf = function (arrayOfIndexes) {Then use the below codes:
return this.filter(function(i) {
return $.inArray(i, arrayOfIndexes) > -1;
});
};
$('td', row).eqAnyOf([0,1]).addClass('strong text-info');
http://tiku.io/questions/581385/use-jquery-to-select-multiple-elements-with-eq
沒有留言:
張貼留言