135

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

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

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

4

8 に答える 8

261

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" }
于 2013-02-01T11:58:58.463 に答える
28

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

バニラ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を使用したVanillaJS

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

アンダースコアバージョンよりもさらに簡潔ですが、アンダースコアではなく、lodashでのみ機能します。IE9 +が必要ですが、IE8ではバグがあります。@AlJeyに感謝ます。

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

テストページ

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

于 2016-07-27T21:54:41.523 に答える
4

デバッグスクリプト(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
于 2018-04-24T14:54:26.400 に答える
3

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

_.transform(this.attributes, function (result, item) {
  item.specified && (result[item.name] = item.value);
}, {});
于 2014-09-20T08:48:19.763 に答える
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>

于 2017-05-29T10:46:05.937 に答える
0

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

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

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

ワーキングフィドル

于 2018-11-10T09:47:49.950 に答える
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();

于 2019-03-28T15:41:44.777 に答える
0

これがあなたのためのワンライナーです。

JQueryユーザー:

$jQueryObjectjQueryオブジェクトに置き換えます。すなわち$('div')

Object.values($jQueryObject.get(0).attributes).map(attr => console.log(`${attr.name + ' : ' + attr.value}`));

Vanilla Javascriptユーザー:

$domElementHTMLDOMセレクターに置き換えます。すなわちdocument.getElementById('demo')

Object.values($domElement.attributes).map(attr => console.log(`${attr.name + ' : ' + attr.value}`));

乾杯!!

于 2020-10-21T09:50:43.157 に答える