下面我就為大家帶來一篇IE下Ajax提交亂碼的快速解決方法。現在就分享給大家,也給大家做個參考。
哈哈,試了這麼多還是encodeURIComponent管用啊! ! ! !
在漢字的位置加個保護措施:encodeURIComponent(parentid)
function loadCity(parentid) { var city = '${hotel.city}'; $.ajax({ url: './listCity.jspx?prov='+ encodeURIComponent(parentid), type: 'GET', dataType: 'JSON', timeout: 5000, error: function() { alert('加载城市列表失败!'); }, success: function(msg) { $("#city").empty(); $.each(eval(msg), function(i, item) { if(item.city ==city){ $("<option value='" + item.city + "' selected = 'selected'>" + item.city + "</option>").appendTo($("#city")); }else{ $("<option value='" + item.city + "'>" + item.city + "</option>").appendTo($("#city")); } }); } }); }
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
#以上是IE下Ajax提交亂碼的快速解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!