From ed21c774195b3de0b22ca8a4a902e2a3fe9a934a Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 22 Jan 2022 22:31:10 +0900 Subject: Element.getAttributeNodeNS() を移行 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/api/element/getattributenodens/index.html | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 files/ja/web/api/element/getattributenodens/index.html (limited to 'files/ja/web/api/element/getattributenodens/index.html') diff --git a/files/ja/web/api/element/getattributenodens/index.html b/files/ja/web/api/element/getattributenodens/index.html deleted file mode 100644 index fb48807b05..0000000000 --- a/files/ja/web/api/element/getattributenodens/index.html +++ /dev/null @@ -1,37 +0,0 @@ ---- -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