我尝试获取相对于元素的点击位置,但事件没有 offsetX。
onClick(e) {
console.log(e.offsetX) // returns undefined
console.log(e.target.offsetX) // returns undefined
}
render() {
return <img src='http://placehold.it/1000x500' onClick={this.onClick} />
}
如何获得元素中的点击位置?