當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Window atob()用法及代碼示例


Window atob() 方法用於解碼 Base-64 編碼字符串。它用於解碼使用btoa()方法編碼的數據串。它返回一個表示解碼後的字符串的字符串。

用法:

window.atob(EncodedString)

Parameters Used :

  • EncodedString :它是指定編碼字符串的強製參數。

以下示例程序旨在說明窗口atob()方法:

解碼使用btoa()方法編碼的字符串。

html


<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Window atob() Method in HTML 
    </title> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        h2 { 
            font-family: Impact; 
        } 
          
        body { 
            text-align: center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Window atob() Method</h2> 
  
    <p> 
      For decoding a base-64 encoded string, 
      double click the "Decode Message" button: 
    </p> 
  
    <button ondblclick="decode()"> 
      Decode Message 
    </button> 
  
    <p id="myDecoding"></p> 
  
    <script> 
        function decode() { 
            var original = "GeeksforGeeks"; 
            var encoded = window.btoa(original); 
            var decoded = window.atob(encoded); 
  
            var output = "Encoded String : "  
            + encoded + "<br>" + "Decoded String : " 
            + decoded; 
            document.getElementById("myDecoding").innerHTML = 
              output; 
        } 
    </script> 
  
</body> 
  
</html> 

輸出:

單擊按鈕後:

支持的瀏覽器:支持的瀏覽器窗口 atob( ) 方法列出如下:

  • 穀歌瀏覽器4
  • 邊 12
  • 互聯網瀏覽器 10
  • 火狐1
  • Opera 10.5
  • 狩獵3


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML DOM Window atob( ) Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。