Add a pseudo-class to a certain class. This class has a click event. Now when I click on the pseudo-class, the click event is also triggered. How can I prevent the click event from being triggered by clicking on the pseudo-class?
高洛峰2017-07-05 10:46:13
Disable mouse click events:
Add to the style of the pseudo class:
pointer-events:none;
Compatibility: here
淡淡烟草味2017-07-05 10:46:13
Detailed explanation of pointer-events:none;
http://www.zhangxinxu.com/wor...
currentTarget handles click events and is also effective in event capture