:首先在 ie6 和 ie7 中
我想知道这个功能是否可以在 ie 6 中工作,我目前可以在我的机器上安装 ie6
$(function(){
$('#slides-thumbs li:first a').each(function(){
$(this).removeAttr('rel');
})
})
我关心的是:首先
I want to know that would this function will work in ie 6, I currently can have ie6 on my machine
$(function(){
$('#slides-thumbs li:first a').each(function(){
$(this).removeAttr('rel');
})
})
My concern is :first
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它会毫无问题地工作。 jQuery 被设计为跨浏览器工作,IE6 也不例外。
您可以在 jQuery 中使用的许多选择器都是从 CSS3 借用的,因此如果您在 CSS 中使用它们,IE6 就会出现问题。然而,
:first
是一个 jQuery 扩展,而不是 CSS 的一部分,因此这里并不完全相关。例如,
:first-child
CSS 选择器在 IE6 中不起作用,但当用作 jQuery 选择器的一部分时,即使在 IE6 中也能正常工作。Yes it will work with no problems. jQuery is designed to work cross-browser, and IE6 is no exception.
Many of the selectors you can use with jQuery are borrowed from CSS3, so if you were to use them in your CSS, IE6 would then have problems. However,
:first
is a jQuery extension and not part of CSS so that's not totally relevant here.For example, the
:first-child
CSS selector will not work in IE6, but will work perfectly fine when used as part of a jQuery selector, even in IE6.