0

我可以在 jquery nth-child 分号内做算术吗?

例如:

alert($('img:nth-child(2+1)'));

我检查了很多次,但我仍然无法收到警报。

4

1 回答 1

1

尝试这个:

alert($("img:nth-child("+(2+1)+")");
于 2012-09-13T11:44:23.007 回答