如何隐藏第一个标题的内容 2?它应该隐藏除标题之外的所有内容。
我尝试使用 nextUntil() 和 nextAll()。我将再次检查 each()。
$(function(){
$('.accordion .head').click(function() {
$(this).nextUntil('.head').toggle('slow');
return false;
}).next().hide();
});
谢谢。
样本:
如何隐藏第一个标题的内容 2?它应该隐藏除标题之外的所有内容。
我尝试使用 nextUntil() 和 nextAll()。我将再次检查 each()。
$(function(){
$('.accordion .head').click(function() {
$(this).nextUntil('.head').toggle('slow');
return false;
}).next().hide();
});
谢谢。
样本: