aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/unescape/index.html
blob: 4577d2f5cc2e34aef2bbc3a296009240da9db802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
title: unescape()
slug: Web/JavaScript/Reference/Global_Objects/unescape
tags:
  - JavaScript
translation_of: Web/JavaScript/Reference/Global_Objects/unescape
---
<div>{{jsSidebar("Objects")}}</div>

<p>已废弃的<code><strong>unescape()</strong></code> 方法计算生成一个新的字符串,其中的十六进制转义序列将被其表示的字符替换。上述的转义序列就像{{jsxref("escape")}}里介绍的一样。因为 <code>unescape</code> 已经废弃,建议使用 {{jsxref("decodeURI")}}或者{{jsxref("decodeURIComponent")}} 替代本方法。</p>

<div class="note"><strong>注意:</strong>不要使用<code>unescape</code>去解码URLS,使用<code>decodeURI</code><code>decodeURIComponent</code>替代。</div>

<h2 id="语法">语法</h2>

<pre class="syntaxbox notranslate"><code>unescape(str)</code></pre>

<h3 id="参数">参数</h3>

<dl>
 <dt><code>str</code></dt>
 <dd>被编码过的字符串。</dd>
 <dt>
 <h3 id="返回值">返回值</h3>
 </dt>
 <dd>一个未被转义的新字符串。</dd>
</dl>

<h2 id="描述">描述</h2>

<p><code>unescape</code>函数是<em>全局对象</em>的一个属性。</p>

<h2 id="示例">示例</h2>

<pre class="brush: js notranslate">unescape('abc123');     // "abc123"
unescape('%E4%F6%FC');  // "äöü"
unescape('%u0107');     // "ć"
</pre>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('ES1', '#sec-15.1.2.5', 'unescape')}}</td>
   <td>{{Spec2('ES1')}}</td>
   <td>Initial definition.</td>
  </tr>
  <tr>
   <td>{{SpecName('ES5.1', '#sec-B.2.2', 'unescape')}}</td>
   <td>{{Spec2('ES5.1')}}</td>
   <td>Defined in the (informative) Compatibility Annex B</td>
  </tr>
  <tr>
   <td>{{SpecName('ES6', '#sec-unescape-string', 'unescape')}}</td>
   <td>{{Spec2('ES6')}}</td>
   <td>Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers</td>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-unescape-string', 'unescape')}}</td>
   <td>{{Spec2('ESDraft')}}</td>
   <td>Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容">浏览器兼容</h2>

<p>{{Compat("javascript.builtins.unescape")}}</p>

<h2 id="相关链接">相关链接</h2>

<ul>
 <li>{{jsxref("decodeURI")}}</li>
 <li>{{jsxref("decodeURIComponent")}}</li>
 <li>{{jsxref("escape")}}</li>
</ul>