e.currenttarget.dataset
时间: 2023-04-28 10:02:49 浏览: 106
dataset
e.currentTarget.dataset 是在 JavaScript 中使用的一个属性,它表示当前事件目标元素上绑定的 dataset 对象。dataset 对象包含了该元素上所有以 "data-" 开头的自定义属性。
例如:<div data-example="some value">,可以用 e.currentTarget.dataset.example 获取 "some value"。
阅读全文