Bootstrap:使用ajax模式后,下拉列表不起作用

时间:2014-08-24 21:07:01

标签: javascript jquery ajax twitter-bootstrap modal-dialog

这就是我打开ajax模式的方式:

    // MODAL AJAX   
$('body').on('hidden.bs.modal', '.modal', function() {
    $(this).removeData('bs.modal');
});     

$('.remote-click').click(function(){
    var dataContent = $(this).attr("data-content");
    $('.spinner').show();

    setTimeout(function(){
    $('#remote').modal({remote: 'ajax.php?' + dataContent, backdrop: 'static', show: true});
    }, 1000);   
    setTimeout(function(){
    $('.spinner').hide();
    }, 2000);           

}); 

以这种方式打开模态后,站点上的引导下拉功能无效。它只有在刷新整个页面时才有效。

此外,我还有一个问题,即在加载新代码之前,您将使用此代码查看旧的ajax模态内容。但首先会显示加载指示器。我无法弄清楚如何解决这个问题。

感谢对这两个问题的任何建议!

0 个答案:

没有答案