Ajax jquery-ui 手风琴
我通过以下方式初始化我的手风琴:
$(function() {
$("#gallery_accordion").accordion({ event: false });
$("#gallery_accordion").click(function(e) {
var contentDiv = $(this).next("div");
contentDiv.load($(this).find("a").attr("href"));
});
});
内容在单击时加载,但手风琴是不可见的。 什么也没显示。非常感谢任何帮助。
谢谢。
更新:高度保持为“0”。有什么理由吗?
这是标记:
<div id="gallery_accordion">
<h3><a href="javascript:getGallery('369');">My first gallery</a></h3>
<div id="gallery369">
</div>
<h3><a href="javascript:getGallery('381');">The second gallery</a></h3>
<div id="gallery381">
</div>
</div>
I init my accordion in the following way:
$(function() {
$("#gallery_accordion").accordion({ event: false });
$("#gallery_accordion").click(function(e) {
var contentDiv = $(this).next("div");
contentDiv.load($(this).find("a").attr("href"));
});
});
The content is loaded onclick but the accordion is invisible.
Nothing is shown. Any help highly appreciated.
Thanks.
Update: The height stays at '0'. Any reason for that?
Here is the markup:
<div id="gallery_accordion">
<h3><a href="javascript:getGallery('369');">My first gallery</a></h3>
<div id="gallery369">
</div>
<h3><a href="javascript:getGallery('381');">The second gallery</a></h3>
<div id="gallery381">
</div>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将您的初始调用更改为:
将 HTML 更改为:
每个单元格都需要有自己的 div 标签,并且在初始调用中,您现在已将标头设置为 H3 标记。
希望这有帮助。
这是加载手风琴的示例文档:
Try changing your initial call to:
And your HTML to:
Each of your cells needs to have its own div tag and in the initial call you have now set the header to the H3 tag.
Hope this helps.
Here is a sample doc that loads the accordion: