如何实现table中,点击某行,选中某行,改变其背景色

时间:2021-11-09 14:46:53

1、首先,现在你的文件中导入 jquery.js 文件

2、在<script></script>中添加如下代码

$("#table1 tr").click(function(){
       document.getElementById("oddNum").value = this.id; //每行设置不同的id值,该行是获取当前行的唯一值
        $(this).addClass("backcolor").siblings("tr").removeClass("backcolor"); //这行是进行背景色的切换,backcolor 是提前定义好的外部css样式,这里进行添加与删除同类的,即实现了选中改行,其他行颜色去掉。 backcolor 中的属性  要加上 !important ,提高其优先级
        $(this).siblings("tr").find("td").removeClass("backcolor_font");   //下边两行是修改该tr中的字体颜色,该行的作用是删除样式
        $(this).find("td").addClass("backcolor_font"); //该行是添加样式,因为想要实现的效果是点击某行,字体颜色切换,只有一行的字体颜色改变
    });