我对
Javascriptan的理解有限,当我将鼠标悬停在另一个div上时,我试图将一个类添加到div中
现在我可以在同一个div中添加一个类但是我希望能够在我将鼠标悬停在#second和#third时添加让我们说蓝色的类到第一个div.
现在我可以在同一个div中添加一个类但是我希望能够在我将鼠标悬停在#second和#third时添加让我们说蓝色的类到第一个div.
当前代码:
$(document).ready(function() { $("#second,#third").hover(function(){ $(this).addClass("hover"); $(this).removeClass("hoverable"); },function(){ $(this).removeClass("hover"); $(this).addClass("hoverable"); } ); });
我的实时网站可以在www.designinterieurm2.com/dev上看到
解决方法
$(document).ready(function() { $('#second,#third').hover(function(){ $('#first').addClass('blue'); },function(){ $('#first').removeClass('blue'); }); });