0

为什么 jquery first child 在 ie6 中工作而 :first-child 不工作?
是否有一些黑客攻击。

:first-child

对比

$(":first-child")
4

3 回答 3

1

jQuery 使用它自己的解析器,而不是浏览器中的解析器

于 2012-10-26T13:13:08.893 回答
1

如果您的意思是 CSS 选择器:first-child与 jQuery 选择器:first-child:这是因为 jquery 有自己的 javascript 实现,而 css 依赖于浏览器...

于 2012-10-26T13:13:18.857 回答
1

jQuery 将实现该功能。实际上它会实现所有选择器,因为 IE6 不支持 querySelectorAll()

于 2012-10-26T13:14:35.647 回答