語法:String.fromCharCode(numX,numX,...,numX)函數
詳細瞭解:http://www.w3school.com.cn/jsref/jsref_fromCharCode.asp編碼
二、charCodeAt() 返回指定位置的字符的 Unicode 編碼。返回值是 0 - 65535 之間的整數。spa
語法:stringObject.charCodeAt(index)code
詳細瞭解:http://www.w3school.com.cn/jsref/jsref_charCodeAt.asp字符串
三、encodeURI() 把字符串做爲 URI 進行編碼。get
語法:encodeURI(URIstring)string
該方法不會對 ASCII 字母和數字進行編碼,也不會對這些 ASCII 標點符號進行編碼: - _ . ! ~ * ' ( ) 。語法
若是 URI 組件中含有分隔符,好比 ? 和 #,則應當使用 encodeURIComponent() 方法分別對各組件進行編碼。方法
詳細瞭解:http://www.w3school.com.cn/jsref/jsref_encodeuri.aspco
四、decodeURI() 對 encodeURI() 函數編碼過的 URI 進行解碼。
語法:decodeURI(URIstring)
詳細瞭解:http://www.w3school.com.cn/jsref/jsref_decodeURI.asp
五、 encodeURIComponent() 把字符串做爲 URI 組件進行編碼。
語法:encodeURIComponent(URIstring)
詳細瞭解:http://www.w3school.com.cn/jsref/jsref_encodeURIComponent.asp
六、decodeURIComponent() 對 encodeURIComponent() 函數編碼的 URI 進行解碼。
語法:decodeURIComponent(URIstring)
詳細瞭解:http://www.w3school.com.cn/jsref/jsref_decodeURIComponent.asp
此文爲純整理。會持續更新...