2015-11-17 12 views
27

Ho prossimo html:Get Data attributi nel codice JavaScript

<span data-typeId="123" data-type="topic" data-points="-1" data-important="true" id="the-span"></span> 

E 'possibile ottenere gli attributi che iniziano con data-, e lo uso nel codice JavaScript come il codice qui sotto? Per ora ottengo null come risultato.

document.getElementById("the-span").addEventListener("click", function(){ 
    var json = JSON.stringify({ 
     id: parseInt(this.typeId), 
     subject: this.datatype, 
     points: parseInt(this.points), 
     user: "Luïs" 
    }); 
}); 

risposta

33

è necessario accedere al dataset property:

document.getElementById("the-span").addEventListener("click", function() { 
    var json = JSON.stringify({ 
    id: parseInt(this.dataset.typeid), 
    subject: this.dataset.type, 
    points: parseInt(this.dataset.points), 
    user: "Luïs" 
    }); 
}); 

Risultato:

// json would equal: 
{ "id": 123, "subject": "topic", "points": -1, "user": "Luïs" } 
6

È possibile accedere come

element.dataset.points 

ecc Quindi, in questo caso: this.dataset.points

31

Perché la proprietà dataset non è stato supportato da Internet Explorer fino alla versione 11, si consiglia di utilizzare getAttribute() invece:

document.getElementById("the-span").addEventListener("click", function(){ 
    console.log(this.getAttribute('data-type')); 
}); 

Dataset documentation

getAttribute documentation

-5

Prova a modificare il codice di :

var type=$("#the-span").attr("data-type"); 
alert(type); 
+3

Asker non ha menzionato jQuery, questo non è nemmeno un buon jQuery per questo scopo. Dovrebbe essere '.data ('type');' invece. –

+1

E per giunta il suggerimento di usare questo "invece del tuo codice" è troppo ampio; Asker vorrebbe mantenere la configurazione della gestione degli eventi e il risultato 'JSON', non un' alert' dell'attributo 'data-type'. – trincot

+1

questo è jquery, non puro javascript. – user3130012