下面我就为大家带来一篇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){
$("" + item.city + "").appendTo($("#city"));
}else{
$("" + item.city + "").appendTo($("#city"));
}
});
}
});
}
上面是我整理给大家的,希望今后会对大家有帮助。
相关文章: