努力したWiki

推敲の足りないメモ書き多数

ユーザ用ツール

サイト用ツール


documents:web:web-003

base64form

フォーム

JavaScriptのbtoa()でBASE64エンコード、atob()でBASE64デコードするフォーム。


 

HTML

デスクトップにファイルを置いてダブルクリックで使えるようにしておくといいかも。

decenc.html
<!doctype html>
<html>
  <head>
    <title>base64 decode encode</title>
  </head>
  <body>
    <h1>base64 decode encode</h1>
    JavaScriptのbtoa()でBASE64エンコード、atob()でBASE64デコードするフォーム。 <br/>
    <textarea id="txt" rows="5" cols="40" placeholder="ここにテキストを貼ってください"></textarea><br/>
    <button id="dec">btoa()</button>&nbsp;<button id="enc">atob()</button>
    <script>
      document.getElementById('dec').addEventListener('click',function(e){ document.getElementById('txt').value=btoa(document.getElementById('txt').value)});
      document.getElementById('enc').addEventListener('click',function(e){ document.getElementById('txt').value=atob(document.getElementById('txt').value)});
    </script>
  </body>
</html>
documents/web/web-003.txt · 最終更新: 2024/01/19 12:58 by k896951

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki