aboutsummaryrefslogtreecommitdiff
path: root/files/ja/conflicting
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-07-30 11:59:08 +0900
committerGitHub <noreply@github.com>2021-07-30 11:59:08 +0900
commitf4b95b35b1201bb7d46d37888791820224e284dd (patch)
treee0b3e990ca91f9307828fe59b7ad0a848dc8d12a /files/ja/conflicting
parent67cb805e64b428d27d9a1c724e6de4c129176465 (diff)
downloadtranslated-content-f4b95b35b1201bb7d46d37888791820224e284dd.tar.gz
translated-content-f4b95b35b1201bb7d46d37888791820224e284dd.tar.bz2
translated-content-f4b95b35b1201bb7d46d37888791820224e284dd.zip
JavaScript/Reference/Global_Objects/escape および unescape を削除 (#1558)
conflicting 版は古いため削除
Diffstat (limited to 'files/ja/conflicting')
-rw-r--r--files/ja/conflicting/web/javascript/reference/global_objects/escape/index.html35
-rw-r--r--files/ja/conflicting/web/javascript/reference/global_objects/unescape/index.html35
2 files changed, 0 insertions, 70 deletions
diff --git a/files/ja/conflicting/web/javascript/reference/global_objects/escape/index.html b/files/ja/conflicting/web/javascript/reference/global_objects/escape/index.html
deleted file mode 100644
index c8cdd4711c..0000000000
--- a/files/ja/conflicting/web/javascript/reference/global_objects/escape/index.html
+++ /dev/null
@@ -1,35 +0,0 @@
----
-title: window.escape
-slug: conflicting/Web/JavaScript/Reference/Global_Objects/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
-original_slug: 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>
diff --git a/files/ja/conflicting/web/javascript/reference/global_objects/unescape/index.html b/files/ja/conflicting/web/javascript/reference/global_objects/unescape/index.html
deleted file mode 100644
index 64f70e8d54..0000000000
--- a/files/ja/conflicting/web/javascript/reference/global_objects/unescape/index.html
+++ /dev/null
@@ -1,35 +0,0 @@
----
-title: window.unescape
-slug: conflicting/Web/JavaScript/Reference/Global_Objects/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
-original_slug: 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>