JavaScript unescape() 函数
JavaScript unescape() 函数可对通过 escape() 编码的字符串进行解码
可以使用函数 escape() 对字符串进行编码
浏览器支持
支持 | 支持 | 支持 | 支持 | 支持 |
语法
unescape(string)
参数
参数 | 描述 |
---|---|
string | 必需。要解码的字符串 |
说明
unescape()不能使用于对 URI (通用资源标识符,UniformResourceIdentifier,简称 "URI" ) 精选解码. 解码 URI 请使用 decodeURI() 方法
范例
使用 escape() 来编码字符串,然后使用 unescape() 对其解码
<script> var str="Need tips? Visit www.twle.cn!"; var str_esc=escape(str); document.write(str_esc + "<br>") document.write(unescape(str_esc)) </script>