$.expr[':']['nth-of-type'] = function(elem, i, match) {
var parts = match[3].split("+");
return (i + 1 - (parts[1] || 0)) % parseInt(parts[0], 10) === 0;
};
有关添加其他“类型”选择器的更多信息,请参见原始文章 。
翻译自: https://css-tricks.com/snippets/jquery/add-nth-of-type-to-jquery/