javascript - 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.
欧阳克
欧阳克 2017-07-05 10:44:13
0
2
1021

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?

欧阳克
欧阳克

温故而知新,可以为师矣。 博客:www.ouyangke.com

reply all(2)
小葫芦

Disable mouse click events:

Add to the style of the pseudo class:

pointer-events:none;

Compatibility: here

淡淡烟草味

Detailed explanation of pointer-events:none;
http://www.zhangxinxu.com/wor...
currentTarget handles click events and is also effective in event capture

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template