对字符串进行 Base64 加密:
window.btoa(str) ---转码
window.atob(str) ---解码
这种加密方法不能加密中文,可以先进行 encodeURIComponent(str)加密中文后再进行这种方法的加密