:首先在 ie6 和 ie7 中

发布于 2024-12-11 21:27:05 字数 197 浏览 0 评论 0原文

我想知道这个功能是否可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

且行且努力 2024-12-18 21:27:05

是的,它会毫无问题地工作。 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文