开启前的Bootstrap手风琴运行功能

时间:2013-02-01 22:55:45

标签: javascript jquery twitter-bootstrap accordion

有没有办法在之前运行某些功能并且手风琴完全打开?

以下是代码:

            $.each($('.accordion-toggle'),function(){
                $(this).click(function() {
                    if($(this).hasClass("collapsed")){
                         //loading content via ajax
                    };
                });

我尝试使用.on('show')函数并使用javascript打开和关闭内容更改data-toggle,但由于现有代码,它似乎非常复杂。

1 个答案:

答案 0 :(得分:0)

试试这个......

$.each($('.accordion-toggle'),function(){
      $(this).click(function() {
            if($(this).hasClass("collapsed")){
                \\loading content via ajax
            }
      });
});

你忘了“;”......