1$("#p1").mouseover(function(){ $(this).css("color","red"); }).mouseout(function(){ $(this).css("color","orange"); })
两个事件可以同时写在一起。
jquery的事件绑定格式注意
最新推荐文章于 2021-06-07 13:10:45 发布
1$("#p1").mouseover(function(){ $(this).css("color","red"); }).mouseout(function(){ $(this).css("color","orange"); })
两个事件可以同时写在一起。