2015年2月10日 星期二

[jQuery] Select More than One Element by Index Using .eq()

e.g

$('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) {
    return this.filter(function(i) {
        return $.inArray(i, arrayOfIndexes) > -1;
    });
};
Then use the below codes:

$('td', row).eqAnyOf([0,1]).addClass('strong text-info');

http://tiku.io/questions/581385/use-jquery-to-select-multiple-elements-with-eq

沒有留言:

張貼留言

日常秘技小輯錄

媽媽傳授: 用爉燭塗在線上縫紉,可以更容易打結,以及拉縫線更順 爸爸傳授: 貼玻璃紙前在玻璃面塗上肥皂水,可以移動玻璃紙不留摺痕