Ottieni tutti gli attributi di un elemento usando jQuery


127

Sto cercando di passare attraverso un elemento e ottenere tutti gli attributi di quell'elemento per generarli, ad esempio un tag può avere 3 o più attributi, a me sconosciuti e ho bisogno di ottenere i nomi e i valori di questi attributi. Stavo pensando qualcosa sulla falsariga di:

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

Qualcuno potrebbe dirmi se questo è persino possibile, e in caso affermativo quale sarebbe la sintassi corretta?

Risposte:


246

La attributesproprietà li contiene tutti:

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

Quello che puoi anche fare è estenderlo in .attrmodo da poterlo chiamare come .attr()ottenere un semplice oggetto di tutti gli attributi:

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

Uso:

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

1
Potresti volerlo aggiustare quando non ci sono elementi corrispondenti, ad es$().attr()
Alexander

11
La attributesraccolta contiene tutti i possibili attributi nell'IE precedente, non solo quelli specificati nell'HTML. È possibile aggirare il problema filtrando l'elenco degli attributi utilizzando ciascuna specifiedproprietà degli attributi .
Tim Down

7
Questa è una funzionalità molto buona e prevista per il .attr()metodo jQuery . È strano che jQuery non lo includa.
Ivkremer,

solo un po 'curioso di sapere perché ci stiamo accedendo come un array in this[0].attributes?
Vishal,

attributesnon è un array però ... in Chrome almeno è un NamedNodeMap, che è un oggetto.
Samuel Edwin Ward,

26

Ecco una panoramica dei molti modi in cui è possibile eseguire, sia per il mio riferimento che per il tuo :) Le funzioni restituiscono un hash di nomi di attributi e dei loro valori.

Vanilla 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;
}

Vanilla JS con Array.reduce

Funziona con browser che supportano ES 5.1 (2011). Richiede IE9 +, non funziona in 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

Questa funzione prevede un oggetto jQuery, non un elemento DOM.

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

    return attrs;
}

Sottolineare

Funziona anche per lodash.

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

lodash

È ancora più conciso della versione di Underscore, ma funziona solo per lodash, non per Underscore. Richiede IE9 +, è difettoso in IE8. Complimenti a @AlJey per quello .

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

Pagina di prova

Su JS Bin, c'è una pagina di test live che copre tutte queste funzioni. Il test include attributi booleani ( hidden) e attributi enumerati ( contenteditable="").


3

Uno script di debug (soluzione jquery basata sulla risposta sopra di hashchange)

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

con LoDash potresti semplicemente fare questo:

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

0

Usando la funzione javascript è più facile ottenere tutti gli attributi di un elemento in 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

Soluzione semplice di Underscore.js

Ad esempio: Ottieni tutti i link di testo che hanno i genitori in classe someClass

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

Violino di lavoro


0

Il mio consiglio:

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

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.