$("#tail tr td").mouseover(function(){
        $(this).addClass("td_hover");
        return false;
    });
    $("#tail tr td").mouseout(function(){
        $(this).removeClass("td_hover");
        return false;
    });.td_hover {
    background-image: -moz-linear-gradient(top, #66FF33, #C6FFB3)!important;
  *filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#66FF33', endColorstr='#C6FFB3')!important;   }我这样加了 mouseover事件   但是滑过是td会不停的闪动   是怎么回事哇  求高手解答