我有一种风格:
.web_show_webcam:hover{color:#000;background:#fff;}
如何使用JQuery将此css附加到元素?这种方式不起作用:
$(".web_show_webcam").addClass("web_show_webcam:hover");
答案 0 :(得分:0)
您可以尝试这样:
$(".web_show_webcam").hover(function() {
$(this).css("background-color","red")
});
答案 1 :(得分:-1)
$('#btn').mouseover(function(e){
$(this).addClass('hoverState');
}).mouseout(function(e){
$(this).removeClass('hoverState');
});
try
JSFiddle