我想知道是否有一种简单的方法可以在React.js 中获取 clicked 元素的属性:
function App () {
return (
<button
title={'foo'}
onClick={myFunction(this)}
>
click me
</button>
)
}
function myFunction(e) {
alert(e.getAttribute('title'));
}
现在我得到:TypeError: can't access property "getAttribute", e is undefined
。
我需要在函数内部使用它,以便稍后将属性传递给另一个(工作)函数。