unescape() 函数可对通过 escape() 编码的字符串进行解码。
提示: 使用函数escape() 对字符串进行编码。
参数 | 描述 |
---|---|
string | 必需。要解码的字符串。 |
所有主要浏览器都支持 unescape() 函数。
注意: unescape()不能使用于对 URI(通用资源标识符:UniformResourceIdentifier,简称"URI")精选解码. 解码 URI 请使用decodeURI() 方法。
在本例中,我们将使用 escape() 来编码字符串,然后使用 unescape() 对其解码:
<script> var str="Need tips? Visit W3Schools!"; var str_esc=escape(str); document.write(str_esc + "<br>") document.write(unescape(str_esc)) </script> 以上实例输出结果: Need%20tips%3F%20Visit%20edu.jb51.net%21 Need tips? Visit edu.jb51.net!尝试一下 »