我尝试将 addClass 和 removeClass 应用于我的表中的一行,并且由于某种原因未应用 addClass 和 removeClass 样式。由于他们没有工作,我尝试使用 css,但这使我的代码更加冗余,将相同的样式应用于某些字段。任何帮助,将不胜感激。谢谢
来自萤火虫
<tr style="color: red; font-weight: bold; background: none repeat scroll 0% 0% rgb(255, 255, 255); cursor: pointer;" class="state-selected"><td style="padding:2.5px 0px 2.5px 2px;">Equipment</td></tr>
.state-selected {
}
我已经在我的 jsp 页面顶部定义了样式
<style type="text/css">
.state-selected {
color: 'red';
font-weight: 'bold';
}
</style>
$("#index tr:gt(0)").hover(
function () {
$(this).css({
'background': '#e9e7e7',
'cursor': 'pointer'
});
}, function () {
$(this).css({
'background': '#ffffff',
'cursor': 'pointer'
});
}).click(function (e) {
$("#index tr").removeClass('state-selected');
$(this).addClass('state-selected');
});