Tôi có html tiếp theo:
<span data-typeId="123" data-type="topic" data-points="-1" data-important="true" id="the-span"></span>
Có thể lấy các thuộc tính bắt đầu bằng data-
và sử dụng nó trong mã JavaScript như mã bên dưới không? Để bây giờ tôi nhận được null
kết quả.
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"
});
});