sunny123456

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

js字符串转base64
原文链接:https://blog.csdn.net/qq_40666120/article/details/120146906

字符串转base64

function encode(str){
	// 对字符串进行编码
	var encode = encodeURI(str);
	// 对编码的字符串转化base64
	var base64 = btoa(encode);
	return base64;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

base64转字符串

function decode(base64){
	// 对base64转编码
	var decode = atob(base64);
	// 编码转字符串
	var str = decodeURI(decode);
	return str;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
posted on 2023-04-13 09:07  sunny123456  阅读(245)  评论(0编辑  收藏  举报