0

我有这个代码:

jQuery(document).ready(function(){
    $('caption').click(function() {
        $(this).nextAll().toggle('slow');
        return false;
    });
});

如何在打开下一个之前关闭手风琴元素?

4

1 回答 1

0

你的意思是这样的吗?

jQuery(document).ready(function(){
    $('caption').nextAll().hide();  -- This hides the content when dom is ready
    $('caption').click(function() {
        $(this).nextAll().toggle('slow');
        return false;
    });
});
于 2012-06-11T14:47:42.813 回答