今天遇到Jquery 回傳json數據,IE瀏覽器提示下載的問題,當提交完數據後返回的本來是json數據的,在火弧裡測試正常,但是IE裡老是提示保存,在網上搜索了下,大部分是說將ContentType設定為"text/xml「本人測試了一下,傳回值為undefined,
原回傳值設定:context.Response.ContentType = "application/json";
嘗試: context.Response.ContentType = "text/xml;"; 失敗
後來試了一下:context.Response.ContentType = "text/plain;charset=UTF-8";
成功!