- 相關(guān)推薦
關(guān)于javascript中encodeURI和decodeURI的使用方法
關(guān)于java script中encodeURI和decodeURI的使用方法
一、基本概念
encodeURI和decodeURI是成對(duì)來(lái)使用的,因?yàn)闉g覽器的地址欄有中文字符的話,可以會(huì)出現(xiàn)不可預(yù)期的錯(cuò)誤,所以可以encodeURI把非英文字符轉(zhuǎn)化為英文編碼,decodeURI可以用來(lái)把字符還原回來(lái)。encodeURI方法不會(huì)對(duì)下列字符進(jìn)行編碼:":"、"/"、";" 和 "?",encodeURIComponent方法可以對(duì)這些字符進(jìn)行編碼。
decodeURI()方法相當(dāng)于java.net.URLDecoder.decode(URIString, "UTF-8");
encodeURI()方法相當(dāng)于java.net.URLEncoder.encode(URIString, "UTF-8");
二、例子
復(fù)制代碼 代碼如下:
var uriStr = "http://www.baidu.com?name=張三&num=001 zs";
var uriec = encodeURI(uriStr);
document.write("編碼后的" + uriec);
var uridc = decodeURI(uriec);
document.write("解碼后的" + uridc);
編碼后的.http://www.baidu.com?name=%E5%BC%A0%E4%B8%89&num=001zs
解碼后的http://www.baidu.com?name=張三&num=001 zs
【javascript中encodeURI和decodeURI的使用方法】相關(guān)文章:
柔膚水的作用和使用方法09-05
Excel中COUNTIF函數(shù)的使用方法01-23
早教機(jī)使用方法10-24
淡奶油的具體使用方法07-14
Word 2000“幫助”菜單使用方法03-19
關(guān)于健身器材的使用方法04-28