利用js escape函數解決中文亂碼問題
本來網頁特效中的escape()是將中文按iso-8859-1字元集進行url編碼的,那樣通過 request.getparameter()是能直接擷取到請求參數的,但後來的javascript將escape()換成了unicode字元集編 碼,如此一來,在jsp教程和servlet中就沒法直接拿到請求參數了,具體原因我也不知道。
解決辦法:
1、首先對中文字元進行兩次escape()編碼,如要傳參數name,值為“你好”,則url的格式為....name=escape(escape("你好")),這樣一來,在request.getparameter()就能取到編碼後的參數了。
2、由於取到的參數是 %25u4f60%25u597d 格式的,沒法用常規的urldecoder.decode()來進行解碼,還好,這世上的牛人夠多,在網上直接找到了一個工具類,能實現 javascript中escape()及unescape()式的編解碼
<script language="javascript">
function get(id){return document.getelementbyid(id).value}
function setting()
{
var xmlhttp;
if(window.activexobject)
{
xmlhttp=new activexobject("microsoft.xmlhttp")
}else{
xmlhttp=new xmlhttprequest();
}
xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readystate==4)
{
if(xmlhttp.status==200)
{
alert("成功!")
}else{
alert(xmlhttp.status)
}
}
}
var url="action.asp教程?action=setting&rnd="+math.random()
xmlhttp.open("post",url,true)
var senddate ="title="+escape(get("title"))+"&conn_way="+escape(get("conn_way"))+"&databasename="+escape(get("databasename"))+"&sqlusername="+escape(get("sqlusername"))+"&sqlpassword="+escape(get("sqlpassword"))+"&sqllocalname="+escape(get("sqllocalname"))+"&pg_size="+escape(get("pg_size"))+"&adminid="+escape(get("adminid"))+"&adminpwd="+escape(get("adminpwd"));
2727 xmlhttp.setrequestheader('content-type','application/x-www-form-urlencoded');
xmlhttp.send(senddate)
}
</script>
上面的執行個體我們中文只用了escape函數,文法如下
定義和用法
escape() 函數可對字串進行編碼,這樣就可以在所有的電腦上讀取該字串。
文法
escape(string)參數 描述
string 必需。要被轉義或編碼的字串。
傳回值
已編碼的 string 的副本。其中某些字元被替換成了十六進位的逸出序列。
說明
該方法不會對 ascii 字母和數字進行編碼,也不會對下面這些 ascii 標點符號進行編碼: - _ . ! ~ * ' ( ) 。其他所有的字元都會被逸出序列替換。
提示和注釋
提示:可以使用 unescape() 對 escape() 編碼的字串進行解碼。
注釋:ecmascript v3 反對使用該方法,應用使用 decodeuri() 和 decodeuricomponent() 替代它