jquery Accordion——可折叠错误
在 jQuery accordion 中,我们可以设置可折叠参数如下
$("#accordion").accordion( { 活动: 0 , 可折叠: true});
可折叠行为第一次运行良好。 但随后它会出错并停止整个手风琴行为。 “this.toHide.parent()[0] 未定义”
知道这是否是已知的错误吗?
in jQuery accordion, we could set collapsible parameter as follow
$("#accordion").accordion({ active: 0 , collapsible: true});
The collapsible behaviour is working fine for the first time.
But subsequently it would give error and stop the whole accordion behaviour.
"this.toHide.parent()[0] is undefined"
Any idea whether this is known bug for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我在使用 Google CDN 时遇到了这个问题。我使用了以前版本的 UI 代码,现在它似乎可以工作了。 1.8.8 似乎导致了错误,因此请尝试使用 1.8.7 - https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.min.js
I was having this problem using Google for CDN. I used a previous version of the UI code and now it seems to be working. 1.8.8 seems to be causing the error so try using 1.8.7 instead - https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.min.js
jquery-ui 的最新版本修复了该问题
recent versions of jquery-ui fixed the issue
CDN 肯定有更新。我正在使用 google,1.8.8 更新打破了这一点。如果您只是使用 /ajax/libs/jqueryui/1.8/jquery-ui.min.js,请将其更改为 /ajax/libs/jqueryui/1.8.7/jquery-ui.min.js
我遇到了完全相同的问题,这对我有用!
There was definitely an update on the CDNs.. I'm using google, and the 1.8.8 update has broken this. If you are just using /ajax/libs/jqueryui/1.8/jquery-ui.min.js, change it to /ajax/libs/jqueryui/1.8.7/jquery-ui.min.js
I had the exact same problem and this worked for me!
甚至他们自己网站上的演示也被破坏了!
http://jqueryui.com/demos/accordion/#collapsible
我尝试了 FF 和 Chrome,但两者都不起作用。
Even the demo on their own site is broken!!
http://jqueryui.com/demos/accordion/#collapsible
I tried FF and Chrome and it doesn't work in both.