你好我有一张桌子,我想在点击它时突出显示表格td。我设法让它工作但只有一半。当我选择另一个但仅在该行上时它改变了td,我想要的只是选择1 td。这是我的js代码
<script>
$(".table").on("click", "td", function() {
$(this).closest("td").siblings().removeClass("td_select");
$(this).toggleClass("td_select");
$("#basicModal").modal("show");
});
</script>
答案 0 :(得分:1)
如果我找对你,你需要这个:
$(this).closest("table").find('td').removeClass("td_select");
//in the current table, find all cells, and remove the highlight