目前学习到这,有两个编码:
一,encodeURIComponent ,把中文变成不认识的代码
二,decodeURIComponent,把不认识的代码转成中文
如;
var str='你好';document.write(encodeURIComponent(str));