是$ .index()相当于nth-child?

时间:2013-11-29 17:42:09

标签: javascript jquery css indexing css-selectors

的返回值
$(element).index();

与CSS nth-child(index)兼容吗?

我做了一些测试,看起来确实如此。有人可以证实吗?

1 个答案:

答案 0 :(得分:3)

否... index()是基于0的索引,其中nth-child使用基于1的索引

演示:Fiddle