Disable :hover on click

后端 未结 5 1421
醉梦人生
醉梦人生 2021-01-31 20:18

I have a div that has hover:

.div {
  // css
}
.div:hover {
  // css
}

But I want to disable the hover when you click on the

5条回答
  •  南旧
    南旧 (楼主)
    2021-01-31 20:26

    All you need is this:

    $('[your selector]').css({'pointer-events': 'none'})
    

提交回复
热议问题