Ho il prossimo html:
<span data-typeId="123" data-type="topic" data-points="-1" data-important="true" id="the-span"></span>
È possibile ottenere gli attributi che iniziano con data-
e usarli 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: "H. Pauwelyn"
});
});