jquery 鼠标图片经过效果

<script>
   //鼠标图片经过效果
    $(function(){
        $(".jione_box ").css("background-color","#1A78CF");
        $(".jione_box").hover(function(){        
            $(this).css("background-color","#0089E6");
        },function(){
            $(this).css("background-color","#1A78CF");
        });
    });

</script>

 

posted @ 2016-06-17 10:32  天涯alone  阅读(192)  评论(0编辑  收藏  举报