摘要: // 中文 base64 编码 function utf8_to_b64(str) { return window.btoa(unescape(encodeURIComponent(str))); } // 中文 base64 解码 function b64_to_utf8(str) { retur 阅读全文
posted @ 2022-12-26 15:47 luckzack 阅读(685) 评论(0) 推荐(0) 编辑