jquery 1.4.2 适用于 iCheckBox 而不是 jquery 1.6

发布于 2024-11-07 23:19:05 字数 262 浏览 1 评论 0原文

我正在使用 这个 Apple 的 jquery 插件,例如复选框按钮。

但是,当我使用 jquery 版本 1.4.2 时,它工作得很好,但是当我尝试使用 jquery 版本 1.6 时。那个插件不起作用。

我尝试使用 IE9 开发人员工具栏调试 javascript,但它没有抛出任何错误。

谢谢。

I am using this jquery plugin for Apple like checkbox button.

However when I use jquery version 1.4.2 it works perfectly but when I try to use jquery version 1.6. that plugin doesn't work.

I tried debugging javascript using IE9 developer toolbar but it is not throwing any error.

Thank you.

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

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

发布评论

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

评论(2

偷得浮生 2024-11-14 23:19:05

编辑:现在它也可以在 FF4 中工作,请参阅:jQuery 1.6:backgroundPosition vs backgroundPositionX 和 FF4 兼容性

让它与 jQuery 一起工作1.6.x 和 1.5.x
(在 Mac 上的 Safari 和 Chrome 中,在 FF4/Mac 中不起作用)

原始代码有两个问题,一是使其与 jQuery 1.5 和 1.6 不兼容,二是使其与 jQuery 1.6 不兼容。

第一个问题是在 animate 调用中使用了

backgroundPosition property 

需要将它们更改为

backgroundPositionX property

,对于 jQuery 1.5 和 1.6

。 第二个问题是检查复选框是否被选中。
在 jQuery 1.4 和 1.5 中这可以完成,

if ( $(this).attr('checked') == true )

但在 jQuery 1.6 中这不起作用,需要将其更改为

if ( $(this).is(':checked') )

此处找到的代码适用于 jQuery 1.6: http://jsfiddle.net/mikkelbreum/HAGMp/

EDIT: got it working in FF4 as well now, see this: jQuery 1.6: backgroundPosition vs backgroundPositionX and FF4 compatibility

Got it working with jQuery 1.6.x and 1.5.x
(in Safari and Chrome on Mac, not working in FF4/Mac)

There were two problems with the original code, one making it incompatible with jQuery 1.5 and 1.6 and one making it incompatible with jQuery 1.6.

The first problem was the use of the

backgroundPosition property 

in the animate calls, they needed to be changed into the

backgroundPositionX property

for jQuery 1.5 and 1.6

The second problem was the check for whether the checkbox is checked or not.
In jQuery 1.4 and 1.5 this could be done with

if ( $(this).attr('checked') == true )

but in jQuery 1.6 this does not work, it need to be changed into

if ( $(this).is(':checked') )

The code found here works for jQuery 1.6: http://jsfiddle.net/mikkelbreum/HAGMp/

简单爱 2024-11-14 23:19:05

尝试更新到 jQuery 1.6.1。在 1.6 中,他们破坏了与 .attr() 的向后兼容性(这破坏了许多插件),但 1.6.1 更新 解决了这个问题

Try updating to jQuery 1.6.1. With 1.6, they broke backwards compatibility with .attr() (which breaks many plugins) but the 1.6.1 update addresses this.

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