如何通过 AJAX 在 JQuery Accordion 中加载内容
我有一个加载大量数据的 jquery 手风琴。该手风琴是通过查询数据库生成的。我的问题 - 有没有办法在单击手风琴的特定元素之前不加载内容?基本上,我想将 jquery tab ajax 内容加载的功能复制到手风琴。
I have a jquery accordion that loads a lot of data. This accordion is generated by querying a database. My question - is there a way to not load the content until a specific element of the accordion has been clicked? Basically, I'd like to replicate the functionality of the jquery tab ajax content load to the accordion.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我正在使用 jquery ui-1.11.4 并遇到了同样的问题。这是我拼凑出来的解决方案。
Javascript:
HTML:
I am using jquery ui-1.11.4 and had this same issue. This is the solution I pieced together.
The Javascript:
The HTML:
您不能将处理程序绑定到“更改”事件吗?
Can't you just bind a handler to the "change" event?