From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../web/api/element/getattributenodens/index.html | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 files/ja/web/api/element/getattributenodens/index.html (limited to 'files/ja/web/api/element/getattributenodens') diff --git a/files/ja/web/api/element/getattributenodens/index.html b/files/ja/web/api/element/getattributenodens/index.html new file mode 100644 index 0000000000..f56fd71658 --- /dev/null +++ b/files/ja/web/api/element/getattributenodens/index.html @@ -0,0 +1,37 @@ +--- +title: element.getAttributeNodeNS +slug: Web/API/Element/getAttributeNodeNS +tags: + - DOM + - Gecko + - 翻訳中 +translation_of: Web/API/Element/getAttributeNodeNS +--- +

{{ ApiRef("DOM") }}== Summary ==

+ +

概要

+ +

Returns the <code>Attr</code> node for the attribute with the given namespace and name. getAttributeNodeNS は指定の名前空間と名前の属性に対する Attr ノードを返します。== Syntax ==

+ +

構文

+ +
attributeNode = element.getAttributeNodeNS(namespace, nodeName)
+
+ +

* <code>attributeNode</code> is the node for specified attribute. * <code>namespace</code> is a string specifying the namespace of the attribute. * <code>nodeName</code> is a string specifying the name of the attribute.

+ + + +

注記

+ +

<code>getAttributeNodeNS</code> is more specific than getAttributeNode in that it allows you to specify attributes that are part of a particular namespace. The corresponding setter method is setAttributeNodeNS. getAttributeNodeNS は特定の名前空間の一部である属性を指定できるという点で getAttributeNodeより特殊です。対応するsetterメソッドはsetAttributeNodeNSです。

+ +

{{ DOMAttributeMethods() }}== Specification ==

+ +

仕様

+ +

DOM Level 2 Core: getAttributeNodeNS

-- cgit v1.2.3-54-g00ecf