JQuery Accordion 不“手风琴化”;通过 AJAX 加载新面板
我必须使用 AJAX 将手风琴面板加载到我的页面之一,我发现 JQuery 正在“手风琴化”HTML 文件中定义的所有面板,但没有一个面板是通过 Javascript 加载的。另一个小怪癖:我正在一个嵌套的手风琴上执行此操作 - 手风琴内的手风琴。如果你愿意的话,这就是手风琴的诞生。
我检查了其他 Stack Overflow 问题和 JQuery 论坛,发现大多数问题都是关于加载数据后调整面板大小的。我发现的最接近的问题是这里,但它没有回答我的问题是因为尝试销毁然后重新折叠我的 JS 加载面板不起作用。
这是我的 html head 部分的相关部分:
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/themes/flick/jquery-ui.css" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".accordion").accordion({
collapsible: true,
icons: false,
autoHeight: false,
active: false
});
});
</script>
这是我的 html body 部分的相关部分:
<div class="accordion">
<h3 id="acc1">First panel title</h3>
<div>First panel content</div>
<h3 id="acc2">Second panel title</h3>
<div class="accordion" id="ajaxresults-aliaslist">This is where the nested accordion goes</div>
<h3 id="acc3">Third panel title</h3>
<div>Thirdpanel content</div>
</div>
<script type="text/javascript">
$("#ajaxresults-aliaslist").load("/loadaliaslist/");
</script>
当 javascript 加载“/loadaliaslist/”时,它收到包含以下内容的消息:
<h3>1st panel within a panel title</h3>
<div>1st panel within a panel content</div>
<h3>2nd panel within a panel title</h3>
<div>2nd panel within a panel content</div>
<h3>3rd panel within a panel title</h3>
<div>3rd panel within a panel content</div>
我知道上面的内容被传递到 div,因为当我加载页面时,内容显示为未手风琴化。我得到的不是手风琴中的手风琴,而是梦想序列第一层的一堆无聊内容。我必须下降一个级别...等等,我刚才在哪里?
对了,还有一件事:我尝试了两种不起作用的方法:
- 我尝试将加载脚本和手风琴脚本都放在页面底部(首先加载),希望顺序很重要。 (菜鸟?不确定...)
- 我尝试在最后添加一个脚本来销毁并重新创建面板,如下所示:
$("#ajaxresults-aliaslist").accordion('destroy').accordion();
仅此而已。我真的希望有人是手风琴界的莱昂纳多·迪卡普里奥,可以帮助我摆脱困境。非常感谢!
I have to load accordion panels into one of my pages using AJAX and I'm finding that JQuery is 'accordionizing' all of the panels defined in the HTML file, but none of the panels loaded via Javascript. One other little quirk: I'm doing this on a nested accordion - the accordion within an accordion. It's accordion inception, if you will.
I checked other Stack Overflow questions and the JQuery Forum and I found that most of them are about resizing panels after loading data. The closest question I found was here, but it doesn't answer my question because trying to destroy and then re-accordion-ize my JS-loaded panels does not work.
This is the relevant section of my html head section:
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/themes/flick/jquery-ui.css" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".accordion").accordion({
collapsible: true,
icons: false,
autoHeight: false,
active: false
});
});
</script>
This is the relevant section of my html body section:
<div class="accordion">
<h3 id="acc1">First panel title</h3>
<div>First panel content</div>
<h3 id="acc2">Second panel title</h3>
<div class="accordion" id="ajaxresults-aliaslist">This is where the nested accordion goes</div>
<h3 id="acc3">Third panel title</h3>
<div>Thirdpanel content</div>
</div>
<script type="text/javascript">
$("#ajaxresults-aliaslist").load("/loadaliaslist/");
</script>
When javascript loads "/loadaliaslist/", it received a message with the following content:
<h3>1st panel within a panel title</h3>
<div>1st panel within a panel content</div>
<h3>2nd panel within a panel title</h3>
<div>2nd panel within a panel content</div>
<h3>3rd panel within a panel title</h3>
<div>3rd panel within a panel content</div>
I know that the content above is being passed to the div because the content appears un-accordionized when I load the page. Instead of an accordion within an accordion, I just get a bunch of boring content sitting at the first level of the dream sequence. I've got to go down a level... Wait, where was I?
Right, one more thing: I have tried two things that did not work:
- I tried putting both the load and the accordion scripts at the bottom of the page (load first), hoping that the order would matter. (noobish? not sure...)
- I tried adding a script at the end to destroy and recreate the panels like so:
$("#ajaxresults-aliaslist").accordion('destroy').accordion();
That's all. I really hope someone out there is the Leonardo DiCaprio of accordions, and can help rescue me from my predicament. Much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我想您想重置手风琴控件。尝试这样做:
之后使用附加功能用 HTML 填充控件。
I suppose that you want to reset the accordion control. Try to do this:
After that fill the control with your HTML using the append.
从 OP 编辑:找到的解决方案
经过更多尝试后,我找到了解决此问题的方法,只要 AJAX 在页面加载时立即加载新数据即可。解决方案是在加载后立即调用 Accordion 函数,仅调用一次。如下解决方案所示:
警告:只有立即加载所有手风琴内容时,此方法才有效。如果在第一个accor之后加载了一些内容
EDIT FROM OP: SOLUTION FOUND
After playing around more, I found a way to solve this problem as long as AJAX is loading the new data immediately on pageload. Solution was to call the accordion function, only once, immediately after the load. As in the solution below:
A word of caution: This will only work if all of the accordion content is loaded immediately. If there are pieces of content loaded after the first accor
未经测试,但尝试这样的事情...
问题很可能是由于事件处理程序没有附加到插入的内容(通过 Ajax)。
编辑:稍微更改了代码(尚未测试)。
Untested but try something like this...
The issue is most likely due to the fact that the event handlers aren't being attached to the inserted content (via Ajax).
EDIT: Changed the code a bit (still untested).