web-dev-qa-db-ja.com

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

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

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

これが可能かどうか、もしそうなら正しい構文はどうなるか、誰にも教えてもらえますか?

111
Styphon

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" }
223
pimvdb

ここに、あなた自身だけでなく自分自身の参照のためにできる多くの方法の概要があります:)関数は属性名とその値のハッシュを返します。

バニラ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;
    }, {} );
}

lodash

Underscoreバージョンよりもさらに簡潔ですが、lodashでのみ機能し、Underscoreでは機能しません。 IE9 +が必要ですが、IE8ではバグがあります。 @AlJeyへの称賛 そのための

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

テストページ

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

22
hashchange

デバッグスクリプト(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
zzapper

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

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

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

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

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

作業フィドル

0
pymen

私のおすすめ:

$.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();

0
William

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