请看一下这段代码:
$('a.load').click(function(){
setTimeout(function(){
$(".content_container").append('<div class="preloading"><img src="http://localhost:8888/smart/assets/images/loading.gif" alt="loading" /></div>').show();
var url = 'http://localhost:8888/smart/payments.html';
$.post(url,function(data){
$('.content_container').append(data).show();
$('.preloading').remove();
});
},1000);
});
它没有返回所需的url的问题,只是加载图像而已,它只是html页面