这就是我打开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模态内容。但首先会显示加载指示器。我无法弄清楚如何解决这个问题。
感谢对这两个问题的任何建议!