使用POST的時候:
//如果傳送參數是直接賦予的,就會產生亂碼!
http_request.open("POST",url,true);
http_request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;charset=gb2312');
http_request.send("action="+strName+"&val="+val); //如果val的值為中文,則產生亂碼
//解決方法很簡單:使用javascript中的escape(string) 函數
http_request.open("POST",url,true);
http_request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;charset=gb2312');
http_request.send("action="+strName+"&val="+escape(val)); //val的值為中文不會產生亂碼
使用GET的時候:
1、在html標簽meta中加入content="text/html; charset=gb2312" 確認浏覽器解析時的編碼.
2、確認服務器層面上的編碼方式
JSP:response.setHeader("Charset","GB2312");
作者“ERDP技術架構”