特定の属性が含まれるNodeの取得

ある特定の要素に指定されている属性を取得するには、element.getAttributeNodeメソッドを使用します。

構文

var attributeNode = element.getAttributeNode(attribute name);
第一引数 attribute name 取得する属性名
戻り値 attributeNode 取得した属性ノード

サンプルコード

JavaScript

var sampleElement = document.getElementById('sample'),
    node          = sampleElement.getAttributeNode('href');

console.log(node);

JavaScript逆引きリファレンス一覧へ戻る