0

请看一下这段代码:

$('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页面

4

1 回答 1

1

我看到你引用的是 localhost:8888,你是在同一个域上运行上面的代码吗?如果你不是,那么我怀疑你正在成为同源政策的牺牲品

于 2012-10-21T02:18:02.817 回答