然后,我写了如下html:

















11 12 13
21 22 23
31 32 33

预期效果是:

jQuery :nth-child前有无空格的区别分析_jquery-LMLPHP

于是我写了如下jQ:

$(".a:nth-child(2)").css("color","red");

运行发现结果竟然是:

jQuery :nth-child前有无空格的区别分析_jquery-LMLPHP

我百思不得其解啊。。最后发现把JQ改写为:

$(".a :nth-child(2)").css("color","red");

就行了。

注意:a后面有一个空格!!!

虽然问题解决了,但是不知道原因,求高手指点。。。

09-06 18:36