普通写法
$(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
浙公网安备 33010602011771号