将中文转换成 utf8格式
var strTemp = encodeURIComponent("测试2");
最后 strTemp 等于"%E6%B5%8B%E8%AF%952”
将utf8格式转换成中文
var str2 = decodeURIComponent(strTemp);
最后str2 等于"测试2"
将中文转换成 utf8格式
var strTemp = encodeURIComponent("测试2");
最后 strTemp 等于"%E6%B5%8B%E8%AF%952”
将utf8格式转换成中文
var str2 = decodeURIComponent(strTemp);
最后str2 等于"测试2"