如何删除css:使用jquery悬停?

时间:2014-07-26 09:11:44

标签: jquery css

CSS

#nextCh:hover{
    margin-right:6px;
}

在某些情况下,我想删除此:hover事件

这样的事情:

if (indexL == countL) {
    $("#nextCh").css(":hover", "remove");
}

2 个答案:

答案 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");
}