当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Window atob()用法及代码示例


窗口atob()方法用于解码base-64编码的字符串。它用于解码使用btoa()方法编码的数据字符串。它返回一个代表解码后的字符串的字符串。

用法:

window.atob(EncodedString)

使用的参数:


  • EncodedString:它是一个必需参数,用于指定编码的字符串。

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

解码使用btoa()方法编码的字符串。

<!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>

输出:

单击按钮后

支持的浏览器:下面列出了Window atob()方法支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | Window atob() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。