首页javascriptmousejQuery Event - 如何悬停时切换类样式

jQuery Event - 如何悬停时切换类样式

我们想知道如何悬停时切换类样式。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<style type='text/css'>
.post {
  color: red;
}

.postDesc {
  color: blue;
}
</style>
<script type='text/javascript'>
$(window).load(function(){
    $(function(){
        $(".post").hover(function(){
           $(this).toggleClass("postDesc"); 
        });
    });
});
</script>
</head>
<body>
  <div class="post">Hello world!</div>
</body>
</html>