说明:
encodeURI和decodeURI是成对来使用的,浏览器的地址栏有中文字符时,会出现不可预期的错误,因此encodeURI把非英文字符转化为英文编码,decodeURI用来把字符还原回来。
一、encodeURI和decodeURI
encodeURI方法不会对下列字符进行编码:":"、"/"、";" 和 "?",encodeURIComponent方法可以对这些字符进行编码。
decodeURI()方法相当于java.net.URLDecoder.decode(URIString, "UTF-8");
encodeURI()方法相当于java.net.URLEncoder.encode(URIString, "UTF-8");
二、示例
<script type="text/
javascript">
/**
* encodeURI和decodeURI
* Edit www.jb200.com
*/
var uriStr = "http://www.jb200.com?name=张三&num=001 zs";
var uriec = encodeURI(uriStr);
document.write("编码后的" + uriec);
var uridc = decodeURI(uriec);
document.write("解码后的" + uridc);
</script>
编码后:http://www.jb200.com?name=%E5%BC%A0%E4%B8%89&num=001%20zs
解码后:http://www.jb200.com?name=张三&num=001 zs