我有一个<input>
下 a <th>
,输入有一个onChange
事件,但是当输入被点击click
时,<th>
标签上会触发一个事件。如何阻止click
事件从 DOM 树上升到父事件侦听器?
const App = () => (
<div style={styles}>
<table>
<th onClick={()=>alert('fire')}>
name
<input onChange={e=>{e.preventDefault();alert('change text')}}/>
</th>
</table>
</div>
);