event.currentTarget.getAttribute()在Firefox中不起作用 - 事件未定义

时间:2015-10-29 09:04:34

标签: javascript firefox mozilla

我有功能

function someFunction(event) {
    var dataP = event.currentTarget.getAttribute("some-attribute");
}

并且仅在Firefox中我得到错误"事件未定义"。

我该怎么办这个问题?

1 个答案:

答案 0 :(得分:1)

我改变了获取此属性值的方式,如此

var dataP = document.getElementById("element-id").getAttribute("some-attribute")

它有效。