当前位置:Gxlcms > JavaScript > Jquery简单实现GridView行高亮的方法

Jquery简单实现GridView行高亮的方法

时间:2021-07-01 10:21:17 帮助过:4人阅读

本文实例讲述了Jquery简单实现GridView行高亮的方法。分享给大家供大家参考。具体实现方法如下:

$("#gridID tr:not(tr:last-child)").filter(function () {
  return $('td', this).length && !('table', this).length
}).hover(function () {
  $(this).toggleClass('hover_css');
});

希望本文所述对大家的jQuery程序设计有所帮助。

人气教程排行