$(\”#GVZhu tr:gt(0)\”).hover(function () {
old = $(this).css(“backgroundColor”);
$(this).css({ “backgroundColor”: “#ccff33” });
}, function () {
$(this).css({ “backgroundColor”: old });
});
只需要把Gridview的id改一下就可以实现,old记录的是以前的颜色。
$(\”#GVZhu tr:gt(0)\”).hover(function () {
old = $(this).css(“backgroundColor”);
$(this).css({ “backgroundColor”: “#ccff33” });
}, function () {
$(this).css({ “backgroundColor”: old });
});
只需要把Gridview的id改一下就可以实现,old记录的是以前的颜色。