开通

开通
 
jQuery.fn.extend({ //激活与离开单元格事件
 active: function() {
  hiOverAlert('active',5);
  if(activeCell)activeCell.removeClass("active");
  activeCell=this;
  this.addClass("active");
 },
 leave: function() {
  hiOverAlert('leave');
  this.removeClass("active");
  activeCell='';
 }
});
 
jQuery.fn.extend({   //激活与离开单元格事件
  active: function() {
    hiOverAlert('active',5);
     if(activeCell)activeCell.removeClass( "active");
    activeCell= this;
     this.addClass( "active");
  },
  leave: function() {
    hiOverAlert('leave');
     this.removeClass( "active");
    activeCell='';
  }
});

你可能感兴趣的:(职场,休闲)