我是靠谱客的博主 发嗲招牌,最近开发中收集的这篇文章主要介绍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"));
	}

  
});
    }
  });
}

网上说的另一种加contentType的方法貌似不管用,o(︶︿︶)o 唉,还是自己靠谱啊~~

contentType: 'application/x-www-form-urlencoded; charset=utf-8',

以上这篇IE下Ajax提交乱码的快速解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

最后

以上就是发嗲招牌为你收集整理的IE下Ajax提交乱码的快速解决方法的全部内容,希望文章能够帮你解决IE下Ajax提交乱码的快速解决方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(121)

评论列表共有 0 条评论

立即
投稿
返回
顶部