Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么 jquery first child 在 ie6 中工作而 :first-child 不工作? 是否有一些黑客攻击。
:first-child
对比
$(":first-child")
jQuery 使用它自己的解析器,而不是浏览器中的解析器
如果您的意思是 CSS 选择器:first-child与 jQuery 选择器:first-child:这是因为 jquery 有自己的 javascript 实现,而 css 依赖于浏览器...
jQuery 将实现该功能。实际上它会实现所有选择器,因为 IE6 不支持 querySelectorAll()