//json格式 var aaa={aaa:1,bbb:2,ccc:3,}; //最後的逗點會使IE發生錯誤 //ajax回傳沒內文時 success: function(response) { if(response==''){ //一般 }else{ //IE會執行這個區域,因為回傳了undefined,所以if要修改成為 if(response=='' || response==null){ } }