blob: 07564a02eea06892b5aff6e6fec9b9d13e9bb34c (
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
|
---
title: window.unescape
slug: Web/API/Window/unescape
tags:
- DOM
- DOM_0
- Gecko
- Gecko DOM Reference
- Window
translation_of: Web/JavaScript/Reference/Global_Objects/unescape
translation_of_original: Web/API/Window.unescape
---
<div>
{{ApiRef}}</div>
<h2 id="Summary" name="Summary">概要</h2>
<p>16 進でエンコードされた値(例えば、クッキー)をデコードします。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"><var>regular</var> = window.unescape(<i>escaped</i>)</pre>
<ul>
<li><code>regular</code> : 通常の文字列</li>
<li><code>encoded</code> : エンコードされた文字列</li>
</ul>
<h2 id="Example" name="Example">例</h2>
<pre class="brush:js">alert( unescape("%5C") ); // 表示結果: "\"
alert( unescape("https%3A//developer.mozilla.org") ); // 表示結果: "https://developer.mozilla.org"
</pre>
<h2 id="Specification" name="Specification">仕様</h2>
<p>{{DOM0}} 但し、ECMA-262 の非標準化セクションで言及されています。</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("window.escape")}}</li>
<li><a href="/ja/docs/JavaScript/Reference/Global_Functions/encodeURIComponent"><code>decodeURIComponent</code></a></li>
</ul>
|