开篇

来源:互联网 发布:网络销售的自我包装 编辑:程序博客网 时间:2024/05/17 07:39

开通博客。。。

随记。。。

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='';
 }
});

  

原创粉丝点击