如何在 JavaScript 代码中获取数据属性的值?

IT技术 javascript html custom-data-attribute
2021-01-14 14:05:38

我有下一个 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"
    });
});
6个回答

您需要访问该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" }
知道这将如何与typescript一起使用吗?因为在typescript中这会产生错误,对象可能未定义
2021-03-12 14:05:38
请记住,根据 MDN,数据集标准不适用于 Internet Explorer < 11。developer.mozilla.org/en-US/docs/Learn/HTML/Howto/... “要支持 IE 10 及以下,您需要访问使用 getAttribute() 代替数据属性。”
2021-03-22 14:05:38

由于datasetInternet Explorer 直到版本 11 才支持属性,因此您可能需要getAttribute()改用:

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

数据集文档

获取属性文档

你可以访问它

element.dataset.points

等等 所以在这种情况下: this.dataset.points

您还可以使用getAttribute()方法获取属性,该方法将返回特定 HTML 属性的值。

var elem = document.getElementById('the-span');

var typeId = elem.getAttribute('data-typeId');
var type   = elem.getAttribute('data-type');
var points = elem.getAttribute('data-points');
var important = elem.getAttribute('data-important');

console.log(`typeId: ${typeId} | type: ${type} | points: ${points} | important: ${important}`
);
<span data-typeId="123" data-type="topic" data-points="-1" data-important="true" id="the-span"></span>

如果您在 Html 元素中定位数据属性,

document.dataset 不管用

你应该使用

document.querySelector("html").dataset.pbUserId

或者

document.getElementsByTagName("html")[0].dataset.pbUserId