How to make Twitter Bootstrap Collapse work on dynamically loaded html using ajax

╄→гoц情女王★ 提交于 2019-12-04 19:32:42

问题


I am loading html using ajax call, this html has Bootstrap Collapse. The issue is Collapse is not working, if you click it will expand but it won't collapse again.

To check if I am doing something wrong, I put the same code on a static page (not loaded using ajax) and it works fine. So its seems issue only with dynamically loaded html.

I tried manually enabling Collapse using

$(".collapse").collapse() 

but still same issue.

I guess I need to use jquery's live() / on() methods, because the html is dynamic, but not sure how do I do that for calling $(".collapse").collapse() because I think it only works on events or is it something else that I need to do ?


回答1:


i would suggest you to call

 $(".collapse").collapse() 

inside the ajax's success function after the dynamic html is appended.




回答2:


My solve is:

    $('.collapse').on('show', function () {
    var $this = $(this);
    if($this.attr('data-href'))
    {
        $this.html($.getJSON($this.attr('data-href'),function(data){
            $this.html(data.html);
            $this.removeAttr('style');
        }));
    }
    })



回答3:


Just execute this on ajax success event.

$('[data-toggle="collapse"]').click(function(e){
      e.preventDefault();
      var target_element= $(this).attr("href");
      $(target_element).collapse('toggle');
      return false;
});


来源:https://stackoverflow.com/questions/13910596/how-to-make-twitter-bootstrap-collapse-work-on-dynamically-loaded-html-using-aja

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!