Below is the sample code....
<div onClick={this.handeAAAClick}>
<img onClick={this.handleLinkClick}/>
</div>
When I click the div and it will trigger handleAAAClick event, however, when I only click on img, and it will trigger both click event, what I want is only to trigger handleLinkClick.
How should I do that?