CSS
#nextCh:hover{
margin-right:6px;
}
在某些情况下,我想删除此:hover
事件
这样的事情:
if (indexL == countL) {
$("#nextCh").css(":hover", "remove");
}
答案 0 :(得分:1)
这样做:
#nextCh.withHover:hover {
margin-right:6px;
}
然后将课程withHover
应用于#nextCh
。
要删除悬停效果,请移除课程withHover
:
$("#nextCh").removeClass("withHover");
答案 1 :(得分:1)
让:hover应用于您可以删除的类并按您的意愿添加:
CSS:
#nextCh.hover:hover{
margin-right:6px;
}
使用Javascript:
if (indexL == countL) {
$("#nextCh").removeClass("hover");
}