向 jQuery Accordion 脚本添加关闭按钮
我想知道是否有办法向我正在处理的手风琴脚本添加关闭按钮(或操作)。我没有jquery知识,但很想学习它。
这是我的手风琴代码:
$(document).ready(function(){
$(".accordion .intro:first").addClass("active");
$(".accordion .more:not(:first)").hide();
$(".accordion .intro").click(function(){
$(this).next(".more").slideToggle("slow")
.siblings(".more:visible").slideUp("slow");
$(this).toggleClass("active");
$(this).siblings(".intro").removeClass("active");
});
});
我想添加一个类来关闭,这样我就可以在内容中添加一个按钮来关闭或 .slideUp
谢谢。
I am wondering if there is a way to add a close button (or action) to this accordion script I'm working on. I have no jquery knowledge, but am eager to learn it.
Here is my accordion code:
$(document).ready(function(){
$(".accordion .intro:first").addClass("active");
$(".accordion .more:not(:first)").hide();
$(".accordion .intro").click(function(){
$(this).next(".more").slideToggle("slow")
.siblings(".more:visible").slideUp("slow");
$(this).toggleClass("active");
$(this).siblings(".intro").removeClass("active");
});
});
I would like to add a class to close, so I can add a button in the content to close or .slideUp
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定这是否是您想要的,但是如果您正在寻找折叠的手风琴,您可以致电:
在哪里
SearchParameterAccordion 是 div id,
0 是要折叠的手风琴的索引。
我相信您也可以使用选择器代替索引。
如果这没有回答您的问题,抱歉。
I'm not sure if this is what your looking for, but if you looking for the accordion to collapse you can call:
where
SearchParameterAccordion is the div id,
0 is the index of which accordion to collapse.
I believe you can also use a selector instead of an index.
If this didn't answer your question, sorry.
设置:
将允许您轻松折叠手风琴窗格。
例子:
settting:
will allow you to collapse an accordion pane easily.
Example: