如何隐藏第一个标题的内容2?它应该隐藏除标题之外的所有内容。
我尝试使用nextUntil()和nextAll()。我将再次检查每个()。
$(function(){
$('.accordion .head').click(function() {
$(this).nextUntil('.head').toggle('slow');
return false;
}).next().hide();
});
感谢。
样品:
答案 0 :(得分:1)
答案 1 :(得分:0)
这是否有原因:
的.next()隐藏();
如果你这样删除它似乎有效。
$(function(){
$('.accordion .head').click(function() {
$(this).nextUntil('.head').toggle('slow');
return false;
});
});