jQueryを使用して要素のすべての属性を取得する


127

要素を調べて、その要素のすべての属性を取得して出力しようとしています。たとえば、タグには3つ以上の属性があり、不明なため、これらの属性の名前と値を取得する必要があります。私は次の線に沿って何かを考えていました:

$(this).attr().each(function(index, element) {
    var name = $(this).name;
    var value = $(this).value;
    //Do something with name and value...
});

これが可能かどうか、そしてもし可能なら正しい構文は何ですか?

回答:


246

attributesプロパティには、それらすべてが含まれています。

$(this).each(function() {
  $.each(this.attributes, function() {
    // this.attributes is not a plain object, but an array
    // of attribute nodes, which contain both the name and value
    if(this.specified) {
      console.log(this.name, this.value);
    }
  });
});

また、すべての属性のプレーンオブジェクトを取得する.attrよう.attr()に呼び出すことができるように拡張することもできます。

(function(old) {
  $.fn.attr = function() {
    if(arguments.length === 0) {
      if(this.length === 0) {
        return null;
      }

      var obj = {};
      $.each(this[0].attributes, function() {
        if(this.specified) {
          obj[this.name] = this.value;
        }
      });
      return obj;
    }

    return old.apply(this, arguments);
  };
})($.fn.attr);

使用法:

var $div = $("<div data-a='1' id='b'>");
$div.attr();  // { "data-a": "1", "id": "b" }

1
一致する要素がない場合は、修正することができます。例$().attr()
Alexander

11
attributesコレクションは、古いIEで可能なすべての属性が含まれているだけでなく、HTMLで指定されているもの。これを回避するには、各属性specifiedプロパティを使用して属性リストをフィルタリングします。
Tim Down

7
これは、jQuery .attr()メソッドにとって非常に優れた機能です。jQueryに含まれていないのは奇妙です。
ivkremer 2014年

なぜ配列としてアクセスしているのか知りたい this[0].attributesですか?
Vishal

attributesただし、配列ではありません... Chromeでは少なくともNamedNodeMap、オブジェクトです。
Samuel Edwin Ward、

26

これは、私自身とあなたの参考のために、実行できる多くの方法の概要です:)関数は属性名とその値のハッシュを返します。

バニラJS

function getAttributes ( node ) {
    var i,
        attributeNodes = node.attributes,
        length = attributeNodes.length,
        attrs = {};

    for ( i = 0; i < length; i++ ) attrs[attributeNodes[i].name] = attributeNodes[i].value;
    return attrs;
}

Array.reduceを使用したVanilla JS

ES 5.1(2011)をサポートするブラウザで動作します。IE9 +が必要ですが、IE8では機能しません。

function getAttributes ( node ) {
    var attributeNodeArray = Array.prototype.slice.call( node.attributes );

    return attributeNodeArray.reduce( function ( attrs, attribute ) {
        attrs[attribute.name] = attribute.value;
        return attrs;
    }, {} );
}

jQuery

この関数は、DOM要素ではなくjQueryオブジェクトを想定しています。

function getAttributes ( $node ) {
    var attrs = {};
    $.each( $node[0].attributes, function ( index, attribute ) {
        attrs[attribute.name] = attribute.value;
    } );

    return attrs;
}

下線

lodashでも機能します。

function getAttributes ( node ) {
    return _.reduce( node.attributes, function ( attrs, attribute ) {
        attrs[attribute.name] = attribute.value;
        return attrs;
    }, {} );
}

ロダッシュ

Underscoreバージョンよりも簡潔ですが、lodashでのみ機能し、Undercoreでは機能しません。IE9 +が必要です。IE8にはバグがあります。@AlJeyに感謝ます。

function getAttributes ( node ) {
    return _.transform( node.attributes, function ( attrs, attribute ) {
        attrs[attribute.name] = attribute.value;
    }, {} );
}

テストページ

JS Binには、これらすべての機能をカバーするライブテストページがあります。テストには、ブール属性(hidden)および列挙属性(contenteditable="")が含まれます。


3

デバッグスクリプト(hashchangeによる上記の回答に基づくjqueryソリューション)

function getAttributes ( $node ) {
      $.each( $node[0].attributes, function ( index, attribute ) {
      console.log(attribute.name+':'+attribute.value);
   } );
}

getAttributes($(this));  // find out what attributes are available

2

LoDashを使用すると、これを簡単に行うことができます。

_.transform(this.attributes, function (result, item) {
  item.specified && (result[item.name] = item.value);
}, {});

0

JavaScript関数を使用すると、NamedArrayFormatの要素のすべての属性を取得する方が簡単です。

$("#myTestDiv").click(function(){
  var attrs = document.getElementById("myTestDiv").attributes;
  $.each(attrs,function(i,elem){
    $("#attrs").html(    $("#attrs").html()+"<br><b>"+elem.name+"</b>:<i>"+elem.value+"</i>");
  });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<div id="myTestDiv" ekind="div" etype="text" name="stack">
click This
</div>
<div id="attrs">Attributes are <div>


0

Underscore.jsによるシンプルなソリューション

例:親がクラスを持つすべてのリンクテキストを取得する someClass

_.pluck($('.someClass').find('a'), 'text');

作業フィドル


0

私のおすすめ:

$.fn.attrs = function (fnc) {
    var obj = {};
    $.each(this[0].attributes, function() {
        if(this.name == 'value') return; // Avoid someone (optional)
        if(this.specified) obj[this.name] = this.value;
    });
    return obj;
}

var a = $(el).attrs();

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.