比如字母a的ascll码就是97,在JS里,和Unicode编码是一样的值。比如:\x0d\x0a\x0d\x0afunction show(){\x0d\x0avar str = prompt("请输入几个字符","")//接收字符串\x0d\x0a\x0d\x0avar strAscii = new Array()//用于接收ASCII码\x0d\x0afor(var i = 0 i strAscii[i] = str.charCodeAt(i)//只能把字符串中的字符一个一个的解码\x0d\x0a}\x0d\x0avar getAscii = ""//把这些ASCII码按顺序排列\x0d\x0afor(var i = 0 i getAscii += strAscii[i]\x0d\x0agetAscii += " "\x0d\x0a}\x0d\x0aalert("这些字符的ASCII码依次是:"+getAscii)//输出结果给人看\x0d\x0a}js对文字进行编码涉及3个函数:escape,encodeURI,encodeURIComponent,相应3个解码函数:unescape,decodeURI,decodeURIComponent
1.传递参数时需要使用encodeURIComponent,这样组合的url才不会被#等特殊字符截断。
例如:<script
language="javascript">document.write('<a
href="http://passport.baidu.com/?logout&aid=7&u='+encodeURIComponent("http://cang.baidu.com/bruce42")+'">退出</a>')</script>
2.进行url跳转时可以整体使用encodeURI
例如:Location.href=encodeURI("http://cang.baidu.com/do/s?word=百度&ct=21")
3.
js使用数据时可以使用escape
例如:搜藏中history纪录。
4.escape对0-255以外的unicode值进行编码时输出%u****格式,其它情况下escape,encodeURI,encodeURIComponent编码结果相同。