我有一个脚本,它非常适合在满足条件时更改表格的 TR 和 TD 背景。
但是 CSS 背景悬停不适用于这些行。
有没有办法通过这些行的悬停工作来保持我的背景变化?
这是我当前的 CSS,它适用于不受条件函数影响的行。
table.tablesorterPRINT tr.odd:hover td {background-color: #6F0;cursor:pointer;}
埃里克
if(qty<=min) { $(this).parent('tr').children('td').css('background' , 'red').css('color' , '#FFF');}
if(qty>=max) { $(this).parent('tr').children('td').css('background' , 'red').css('background' , '#FFF'); }