带空格的 IE6 和 JQuery 选择器

发布于 2024-09-24 03:17:34 字数 361 浏览 1 评论 0原文

以下内容在 IE6 中似乎不起作用。但是,它适用于 IE7+ 和 Firefox。我想我以前也遇到过类似的问题,IE6 不喜欢 JQuery 选择器中的空格。但是,我不知道如何重写它以便 IE6 能够接受它。

$('#other_stages :checkbox:not(#section_2_active, #co_t)').change();

我也尝试过以下方法,但也不起作用:

$('#other_stages').find('input[type=checkbox]:not(#section_2_active,#co_t)').change();

感谢大家的帮助

The following doesn't seem to work in IE6. However, it works with IE7+ and firefox. I think I have had a similar issue before where IE6 doesn't like spaces in JQuery selectors. However, I don't know how to re-write this so IE6 will accept it.

$('#other_stages :checkbox:not(#section_2_active, #co_t)').change();

I have also tried the following and it didn't work either:

$('#other_stages').find('input[type=checkbox]:not(#section_2_active,#co_t)').change();

Thanks all for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

余生共白头 2024-10-01 03:17:34

它适用于 IE6: http://jsbin.com/ekoli4/2

It works for me on IE6: http://jsbin.com/ekoli4/2

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