赞
踩
在React中e.stopPropagation()无法阻止事件冒泡,可以使用 e.nativeEvent.stopImmediatePropagation() 完美解决。
class Test extends React.Component{ componentDidMount(){ document.onclick=this.two; } one(e){ e.nativeEvent.stopImmediatePropagation(); alert('one') } two(){ alert('two') } render(){ return(<div style={{height:200,width:200,backgroundColor:"#ccc"}} onClick={this.one}/>) } } ReactDOM.render( <Test/>, document.getElementById("test") );
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。