1 /******* 表格效果 ********/
 2         $("#gird_tbl tbody tr").live('mouseover', function () {
 3             $(this).addClass('c-grid-row-over');
 4         }).live('mouseout', function () {
 5             $(this).removeClass('c-grid-row-over');
 6         }).live('click', function () {
 7             $('.c-grid-row-selected').removeClass('c-grid-row-selected');
 8             $(this).addClass('c-grid-row-selected');
 9         });
10  /******* 表格效果结束 *******/

 

相关文章:

  • 2021-11-01
  • 2021-11-01
  • 2021-11-21
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
  • 2021-11-01
  • 2021-11-01
猜你喜欢
  • 2021-08-04
  • 2021-11-01
  • 2021-11-01
  • 2021-11-01
  • 2021-09-03
  • 2021-11-01
相关资源
相似解决方案