aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/element/prefix/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/element/prefix/index.html')
-rw-r--r--files/ja/web/api/element/prefix/index.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/files/ja/web/api/element/prefix/index.html b/files/ja/web/api/element/prefix/index.html
deleted file mode 100644
index b2baf67888..0000000000
--- a/files/ja/web/api/element/prefix/index.html
+++ /dev/null
@@ -1,48 +0,0 @@
----
-title: Element.prefix
-slug: Web/API/Element/prefix
-tags:
-- API
-- DOM
-- NeedsBrowserCompatibility
-- NeedsMobileBrowserCompatibility
-- Property
-- Reference
-browser-compat: api.Element.prefix
-translation_of: Web/API/Element/prefix
----
-<div>{{APIRef("DOM")}}</div>
-
-<p><code><strong>Element.prefix</strong></code> は読み取り専用プロパティで、指定された要素の名前空間の接頭辞を、接頭辞が指定されていない場合は <code>null</code> を返します。</p>
-
-<h2 id="Syntax">構文</h2>
-
-<pre class="brush: js"><var>string</var> = <var>element</var>.prefix
-</pre>
-
-<h2 id="Examples">例</h2>
-
-<p>次の例はコンソールに "x" を記録します。</p>
-
-<pre class="brush:xml">&lt;x:div onclick="console.log(this.prefix)"/&gt;
-</pre>
-
-<h2 id="Notes">注</h2>
-
-<p>これは、名前空間を認識するパーサーを使用しているとき、すなわち、文書が XML の MIME タイプで送信されたときのみ動作します。 HTML 文書では動作しません。</p>
-
-<h2 id="Specifications">仕様書</h2>
-
-{{Specifications}}
-
-<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat}}</p>
-
-<h2 id="See_also">関連情報</h2>
-
-<ul>
- <li>{{domxref("Element.namespaceURI")}}</li>
- <li>{{domxref("Element.localName")}}</li>
- <li>{{domxref("Attr.prefix")}}</li>
-</ul>