btoa() / atob() / escape() / unescape()
btoa(str) : 將字串轉換為 Base64 編碼。 atob(str) : 將 Base64 編碼還原回字串。 但不支援中文字串。 btoa(str) : Convert string to Base64。 atob(str) : Base64 restore back to string。 But does not support Chinese text strings。
00
escape() : 將中文字串轉進行編碼後換為 Base64 編碼 unescape() : 將 Base64 編碼還原回轉回中文字串 btoa(escape(str)) : 將字串轉換為 Base64 編碼 unescape(atob(str)): 將 Base64 編碼還原回字串 加入 escape() / unescape() 中英文都能支援 Both Chinese and English are supported
00
沒有留言:
張貼留言