$(function(){
$.ajax({
url: 'http://xxx/',
type: 'GET',
crossDomain:true,
cache:true,
dataType:"script",
success:function(data,textStatus,jqXHR){
alert(data);
}
});
});
実際にはサーバーはjsonオブジェクトを返していますが、私のファイアバグではSyntaxError:無効なラベルが表示されています
私に何ができる ?