ESSAY / NOTE

jquery鼠标移开关闭DIV元素

$('#show').hover(function(){
  $(this).show();
  }, function(){
  $(this).hide();
  });