diff options
Diffstat (limited to 'files/ja/web/api/window/escape/index.html')
-rw-r--r-- | files/ja/web/api/window/escape/index.html | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/files/ja/web/api/window/escape/index.html b/files/ja/web/api/window/escape/index.html deleted file mode 100644 index 48ab4cab3b..0000000000 --- a/files/ja/web/api/window/escape/index.html +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: window.escape -slug: Web/API/Window/escape -tags: - - DOM - - DOM_0 - - Gecko - - Gecko DOM Reference - - Window -translation_of: Web/JavaScript/Reference/Global_Objects/escape -translation_of_original: Web/API/Window.escape ---- -<div> - {{ApiRef}}</div> -<h2 id="Summary" name="Summary">概要</h2> -<p>文字列をエンコードし、16 進エスケープシーケンスで表された特定の文字に置換します。</p> -<h2 id="Syntax" name="Syntax">構文</h2> -<pre class="syntaxbox"><var>escaped</var> = escape(<i>regular</i>); -</pre> -<ul> - <li><code>escaped</code> は、エンコードされた文字列です。</li> - <li><code>regular</code> は、通常の文字列です。</li> -</ul> -<h2 id="Example" name="Example">例</h2> -<pre class="brush:js">alert( escape("http://www.cnn.com") ); // 表示結果: http%3A//www.cnn.com -</pre> -<h2 id="Notes" name="Notes">注記</h2> -<p><code>escape()</code> メソッドは、特別な文字(通常のテキストや数字ではない文字)を 16 進文字にエンコードします。これは、特に、クッキーの値を設定するために必要となります。また、GET リクエストや AJAX GET/POST リクエストの URL で - <i> - name=value</i> - のような組のデータを渡すときにも役立ちます。</p> -<p>{{domxref("window.unescape")}} 、<a href="/ja/docs/JavaScript/Reference/Global_Objects/encodeURIComponent"><code>encodeURIComponent</code></a> も参照してください。</p> -<h2 id="Specification" name="Specification">仕様</h2> -<p>{{DOM0}} 但し、ECMA-262 の非標準化セクションで言及されています。</p> |