的HTML

<table id="flex_home" style="" cellpadding="0" cellspacing="0" border="0">

<tbody>
<tr class="trSelected"><td align="center" style="display: none;"><div style="text-align: center; width: 15px;"></td></tr>
<tr class="trSelected"><td align="center" style="display: none;"><div style="text-align: center; width: 15px;"></td></tr>
<tr class="trSelected"><td align="center" style="display: none;"><div style="text-align: center; width: 15px;"></td></tr>
<tr><td align="center" style="display: none;"><div style="text-align: center; width: 15px;"></td></tr>

</tbody>
</table>


如果我单击要添加的tr selected类,并且如果我单击另一tr,则要删除的trselected,并且我选择的那个我需要具有trselected

jQuery的

$('table > tbody > tr').click(function(){
$(this).removeClass('trselected');
$(this).addClass('trselected');
});

最佳答案

您需要使用:

$('table > tbody > tr').click(function(){
 $('.trselected').removeClass('trselected');
 $(this).addClass('trselected');
});

09-25 18:10