标签:tostring func return replace var i++ ice unicode har
// 转为unicode 编码
function encodeUnicode(str) {
var res = [];
for ( var i=0; i<str.length; i++ ) {
res[i] = ( "00" + str.charCodeAt(i).toString(16) ).slice(-4);
}
return "\\u" + res.join("\\u");
}
// 解码
function decodeUnicode(str) {
str = str.replace(/\\/g, "%");
return unescape(str);
}
标签:tostring func return replace var i++ ice unicode har
原文地址:http://www.cnblogs.com/ZenoLiang/p/7239750.html