unescape()

JavaScript unescape() 函数


定义和用法

unescape() 函数可对通过 escape() 编码的字符串进行解码。

提示: 使用函数escape() 对字符串进行编码。

语法

unescape(string)

参数 描述
string 必需。要解码的字符串。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 unescape() 函数。


提示和注释

注意: unescape()不能使用于对 URI(通用资源标识符:UniformResourceIdentifier,简称"URI")精选解码. 解码 URI 请使用 decodeURI() 方法。


实例

在本例中,我们将使用 escape() 来编码字符串,然后使用 unescape() 对其解码:

<script>

var str="Need tips? Visit bubufxs!";
var str_esc=escape(str);
document.write(str_esc + "<br>")
document.write(unescape(str_esc))

</script>

以上实例输出结果:

Need%20tips%3F%20Visit%20bubufx%21
Need tips? Visit bubufx!

© 2021 jiaocheng.bubufx.com  联系我们
ICP备案:鲁ICP备09046678号-3