1
class Sample extends React.Component {
constructor(props) {
super(props);
this.handleChild = this.handleChild.bind(this);
this.handleParent = this.handleParent.bind(this);
}
render() {
return (
<div
style={{width: '100%', height: '500px', background: 'white'}}
onClick={this.handleParent}>
<div
style={{ width: '40px', height: '40px', margin: '0 auto', background: 'black'}}
onClick={this.handleChild}>
hello
</div>
</div>
);
}
handleParent(e) {
console.log('parent');
}
handleChild(e) {
console.log('child');
}
}
輸出點擊孩子時的onClick觸發時,孩子被點擊
child
parent
願望輸出
child
我的意思是我只是想引發獨生子女的onClick當孩子被點擊。
父母工作正常。當父母被點擊時,它只觸發父母的onClick。 我遇到的問題是與孩子在一起。
'e.stopPropagation();'停止父事件 – Sasikumar
子處理器中它被稱爲事件冒泡,去上讀了。 – CBroe