Clicking on css content property

后端 未结 2 401
别那么骄傲
别那么骄傲 2021-01-22 01:41

The Following code adds an image before header tag. How can add javascript or jquery code for handling some task when the image added before the header was clicked.



        
2条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-22 02:41

    You cannot attach events on pseudo class elements since they are not part of the DOM, you can only attach events to the original elements or parents.

    You can create an element containing the image and position it in the same place that the pseudo element is positioning it, and attach any event handler to it.

提交回复
热议问题