我有以下代码:
<tr><td class="style3">test</td></tr>
和
$("tr").hover(
function () {
$(this).css("background-color","#d9e8cd");
$(this).css("font-weight","bold");
$(this).children().css("color","#222222 !important");
},
function () {
$(this).css("background-color","");
$(this).css("font-weight","");
$(this).children().css("color","#4b4a4a");
}
);
问题是文本颜色不会改变,我尝试指定 tr 但它不起作用,所以我认为定位 td 会使其工作,因为 style3 类指定了颜色。
当 tr 悬停在上面时,如何使文本的颜色发生变化?
这是一个在线演示 http://jsfiddle.net/B7dMd/