轻松上手,快乐学习!

JavaScript unescape() 函数


实例

编码和解码字符串:

var str = "Need tips? Visit BEGTUT!";
var str_esc = escape(str);
document.write(str_esc + "<br>")
document.write(unescape(str_esc))
亲自试一试 »

定义和用法

unescape() 函数在 JavaScript 1.5 版中已弃用。请使用 decodeURI()decodeURIComponent() 代替。

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


浏览器支持

函数
unescape() Yes Yes Yes Yes Yes

语法

unescape(string)

参数值

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

技术细节

返回值: 字符串,表示解码后的字符串。