jQuery选择器:nth-child(2) 与:nth-child(2n) 的区别

// nth-child(2)
$('table tr td:nth-child(2)').css('background-color','red');

 jQuery选择器:nth-child(2) 与:nth-child(2n) 的区别_第1张图片

// :nth-child(2n)
$('table tr td:nth-child(2n)').css('background-color','red');

 jQuery选择器:nth-child(2) 与:nth-child(2n) 的区别_第2张图片

 

 

演示地址: http://qiaole.sinaapp.com/worldcup/match.php

你可能感兴趣的:(学习永无止境,jquery,纵观千象,乔乐共享,nth-child)