jquery 1.4.2 适用于 iCheckBox 而不是 jquery 1.6
我正在使用 这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:现在它也可以在 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 调用中使用了
需要将它们更改为
,对于 jQuery 1.5 和 1.6
。 第二个问题是检查复选框是否被选中。
在 jQuery 1.4 和 1.5 中这可以完成,
但在 jQuery 1.6 中这不起作用,需要将其更改为
此处找到的代码适用于 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
in the animate calls, they needed to be changed into the
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
but in jQuery 1.6 this does not work, it need to be changed into
The code found here works for jQuery 1.6: http://jsfiddle.net/mikkelbreum/HAGMp/
尝试更新到 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.