乐趣区

关于javascript:字符串的加密和解密

仅反对浏览器端:

// 字符串编码
function encode (str) {return window.btoa(encodeURIComponent(str))
}

// 字符串解码
function decode(str) {return decodeURIComponent(atob(str))
}

console.log(encode('yangyingjie'))
退出移动版