1. 首页
  2. 移动开发
  3. BlackBerry
  4. jQuery表格行换色的三种实现方法

jQuery表格行换色的三种实现方法

上传者: 2020-12-12 23:53:20上传 PDF文件 20.51KB 热度 10次
代码如下: $(‘tr’).hover(function(event) { $(this)[ (event.type == ‘mouseenter’ ? ‘add’ : ‘remove’) + ‘Class’ ](‘test’); //test是样式 }); $(‘tr’).hover(function(event) { $(this).toggleClass(‘test’); //test是样式 }); $(‘tr’).hover(function(){ $(this).addClass(‘test’); //test是样式 },function(){ $(this).removeClass
用户评论