鼠标移入移除事件

在实际项目中会用到很多关于鼠标移入移除事件的js,虽然经常写,但每次也会忘记,所以特记下来

 $('.cooperate_show').hover(function (){
    $(this).children('.cooperate_phone').show();
  },function (){
    $(this).children('.cooperate_phone').hide();
  });

你可能感兴趣的:(鼠标移入移除事件)