$(function(){
    $.ajax({
        url: 'http://xxx/',
        type: 'GET',
        crossDomain:true,
        cache:true,
        dataType:"script",
        success:function(data,textStatus,jqXHR){
            alert(data);
        }
    }); 
});
实际上服务器正在返回 json 对象,在我的萤火虫中它显示 SyntaxError: invalid label
我能做些什么 ?