普通写法

$(function(){
   $("#city").mouseover(function(){
        $(this).css("background","blue");
   });
   $("#city").mouseout(function(){
        $(this).css("background","red");
   });
})

链式写法

$(function(){
     $("#city").mouseover(function(){
           $(this).css("background","blue");
     }).mouseout(function(){
           $(this).css("background","red");
     })
})

切换函数写法

$(function(){
    $("#city").hover(function(){
         $(this).css("background","blue");
    },function(){
         $(this).css("background","red");
    });
})

 

 posted on 2019-04-25 20:52  会飞的金鱼  阅读(95)  评论(0)    收藏  举报