diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-06-28 00:54:11 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-28 00:54:11 +0900 |
commit | d793503f812e424dd137b141e4b75a44ef0ea065 (patch) | |
tree | 695ae1bdec6e6de2f29e91c66742d3feb845a59e /files/ja/conflicting | |
parent | 5e85f24ca2d7a45d0a7269bd606dca6c2d94d8b3 (diff) | |
download | translated-content-d793503f812e424dd137b141e4b75a44ef0ea065.tar.gz translated-content-d793503f812e424dd137b141e4b75a44ef0ea065.tar.bz2 translated-content-d793503f812e424dd137b141e4b75a44ef0ea065.zip |
Web/API/Element/localName を更新 (#1218)
- conflicting 版よりも正規版の方が英語版に近いため、 conflicting 版を削除
- 2021/06/13 時点の英語版に同期
Diffstat (limited to 'files/ja/conflicting')
-rw-r--r-- | files/ja/conflicting/web/api/element/localname/index.html | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/files/ja/conflicting/web/api/element/localname/index.html b/files/ja/conflicting/web/api/element/localname/index.html deleted file mode 100644 index e8849609d9..0000000000 --- a/files/ja/conflicting/web/api/element/localname/index.html +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: Node.localName -slug: conflicting/Web/API/Element/localName -tags: - - DOM - - Gecko - - Gecko DOM Reference - - Node - - 要更新 -translation_of: Web/API/Node/localName -original_slug: Web/API/Node/localName ---- -<p>{{ ApiRef() }}</p> -<h3 id=".E6.A6.82.E8.A6.81" name=".E6.A6.82.E8.A6.81">概要</h3> -<p>このノードの修飾名のローカル部分を返します。</p> -<h3 id=".E6.A7.8B.E6.96.87" name=".E6.A7.8B.E6.96.87">構文</h3> -<pre class="eval"><em>name</em> = <em>element</em>.localName -</pre> -<ul> - <li><code>name</code> は文字列でのローカル名です(詳細は下の{{ Anch("注記") }} を参照してください)</li> -</ul> -<h3 id=".E4.BE.8B" name=".E4.BE.8B">例</h3> -<p>(<code>text/xml</code> や <code>application/xhtml+xml</code> のような XML コンテンツタイプで提供されなくてはなりません。)</p> -<pre class="eval"><html xmlns="<span class="nowiki">http://www.w3.org/1999/xhtml</span>" - xmlns:svg="<span class="nowiki">http://www.w3.org/2000/svg</span>"> -<head> - <script type="application/javascript"><![CDATA[ - function test() { - var text = document.getElementById('text'); - var circle = document.getElementById('circle'); - - text.value = "<svg:circle> has:\n" + - "localName = '" + circle.localName + "'\n" + - "namespaceURI = '" + circle.namespaceURI + "'"; - } - ]]></script> -</head> -<body onload="test()"> - <svg:svg version="1.1" - width="100px" height="100px" - viewBox="0 0 100 100"> - <svg:circle cx="50" cy="50" r="30" style="fill:#aaa" id="circle"/> - </svg:svg> - <textarea id="text" rows="4" cols="55"/> -</body> -</html> -</pre> -<h3 id=".E6.B3.A8.E8.A8.98" name=".E6.B3.A8.E8.A8.98">注記</h3> -<p>ノードのローカル名はノードの修飾名のコロン(:)の後ろの部分です。修飾名は特定の XML 文書の名前空間の一部として XML の中で特に使われます。例えば、修飾名 <code>ecomm:partners</code> の中で <code>partners</code> がローカル名で <code>ecomm</code> が接頭辞です。</p> -<pre><ecomm:business id="soda_shop" type="brick_n_mortar"> - <ecomm:partners> - <ecomm:partner id="1001">Tony's Syrup Warehouse - </ecomm:partner> - </ecomm:partner> -</ecomm:business> -</pre> -<p><span class="comment">Needs to be reworded; right now it's wrong. -Nickolay The prefix&mdash;in this case, "ecomm"&mdash;defines the namespace in which the local name can be used.</span></p> -<p> {{ gecko_minversion_note("1.9.2", "Firefox 3.5 およびそれ以前では、このプロパティは HTML DOM 中の HTML 要素については大文字のローカル名を返します(XML DOM 中の XHTML 要素については小文字のローカル名を返します)。 Firefox 3.6 以降のバージョンでは、 HTML 5 との互換性のため、内部的な DOM ストレージにおける大文字/小文字で返します。つまり、 HTML DOM と XML DOM の両方において、 HTML 要素は小文字のローカル名となります。 tagName プロパティは、 HTML DOM 中の HTML 要素についても今まで通り大文字のローカル名を返します。") }}</p> -<p><code>ELEMENT_NODE</code> と <code>ATTRIBUTE_NODE</code> 以外の<a href="/ja/DOM/element.nodeType" title="ja/DOM/element.nodeType">種類</a>全てに属すノードでは、常に <code>localName</code> は <code>null</code> です。</p> -<h3 id=".E5.8F.82.E7.85.A7" name=".E5.8F.82.E7.85.A7">参照</h3> -<p><a href="/ja/DOM/element.namespaceURI" title="ja/DOM/element.namespaceURI">element.namespaceURI</a></p> -<h3 id=".E4.BB.95.E6.A7.98" name=".E4.BB.95.E6.A7.98">仕様</h3> -<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-NodeNSLocalN">DOM Level 2 Core: Node.localName</a></p> |