Js实现unicode 中文互转

// 转为unicode 编码  
function encodeUnicode(str) {  
    var res = [];  
    for ( var i=0; i

你可能感兴趣的:(js,原生代码,前端)