我有下一个html:

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

是否有可能获得以data开始的属性,并在JavaScript代码中使用它,如下面的代码?现在我得到的结果是null。

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"
    });
});

当前回答

实际上,您可以使用JQuery以一种非常简单的方式来实现这一点

$(document).on('click', '.the-span', function(){

let type = $(this).data("type");

});

其他回答

因为Internet Explorer直到版本11才支持dataset属性,所以你可能想使用getAttribute()来代替:

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

数据集的文档

getAttribute文档

试试这个,而不是你的代码:

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

你可以访问它

element.dataset.points

等。这里是this。dataset。points

实际上,您可以使用JQuery以一种非常简单的方式来实现这一点

$(document).on('click', '.the-span', function(){

let type = $(this).data("type");

});

你需要访问dataset属性:

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"
  });
});

结果:

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