标签: javascript jquery css indexing css-selectors
是
$(element).index();
与CSS nth-child(index)兼容吗?
nth-child(index)
我做了一些测试,看起来确实如此。有人可以证实吗?
答案 0 :(得分:3)
否... index()是基于0的索引,其中nth-child使用基于1的索引
index()
0
nth-child
1
演示:Fiddle