我注意到在jQuery UI主题滚动网站(左侧)上,他们有可折叠面板来为自定义jQuery UI包分组自定义选项.
但是,我没有在jQuery UI中看到任何可折叠面板(对我来说似乎很奇怪!)
有没有人知道jQuery的任何可折叠面板选项就像那样的工作(带箭头和所有)?
最佳答案
我想你在寻找手风琴:
原文链接:https://www.f2er.com/jquery/428418.htmlhttp://jqueryui.com/demos/accordion/
但是,如果您想打开多个部分,请查看手风琴文档的这一部分(概述):
jQuery(document).ready(function(){
$('.accordion .head').click(function() {
$(this).next().toggle();
return false;
}).next().hide();
});
或动画:
jQuery(document).ready(function(){
$('.accordion .head').click(function() {
$(this).next().toggle('slow');
return false;
}).next().hide();
});