运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Window Object</h1> <h2>The btoa() Method</h2> <p>The btoa() method encodes a string in base-64.</p> <p>The btoa() method is not supported in IE9 and earlier.</p> <p id="demo"></p> <script> let text = "Hello World!"; let encoded = window.btoa(text); document.getElementById("demo").innerHTML = "Original: " + text + "<br>Encoded: " + encoded; </script> </body> </html>