表格复选框控制行高亮
Posted 天--安静
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表格复选框控制行高亮相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表格复选框控制行高亮</title>
<script src="jquery-1.4.2.js"></script>
<script type="text/javascript">
$(function(){
$("tbody>tr:odd").addClass("odd");
$("tbody>tr:even").addClass("even");
$("tbody>tr").click(function(){
if($(this).hasClass("selected"))
{
$(this).removeClass("selected").find(":checkbox").attr("checked",false);
}
else
{
$(this).addClass("selected").find(":checkbox").attr("checked",true);
}
});
});
</script>
<style>
.odd{background:#eee;}
.even{background:#ff0;}
.selected{background:red;}
</style>
</head>
<body>
<table border="1" cellpadding="0" cellspacing="0" width="100%">
<thead>
<tr>
<th width="10%"></th><th width="30%">姓名</th><th width="30%">性别</th><th width="30%">暂住地</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox" checked/></td><td>11</td><td>22</td><td>33</td>
</tr>
<tr>
<td><input type="checkbox" /></td><td>22</td><td>22</td><td>33</td>
</tr>
<tr>
<td><input type="checkbox" /></td><td>33</td><td>22</td><td>33</td>
</tr>
<tr>
<td><input type="checkbox" /></td><td>44</td><td>22</td><td>33</td>
</tr>
<tr>
<td><input type="checkbox" /></td><td>55</td><td>22</td><td>33</td>
</tr>
<tr>
<td><input type="checkbox" /></td><td>66</td><td>22</td><td>33</td>
</tr>
</tbody>
</table>
</body>
</html>
以上是关于表格复选框控制行高亮的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot + Thymeleaf 动态表,行中带有复选框与控制器通信
vue基于element实现表格中点击某一行全选框选中此行所有选框
java向Word模板中替换书签数据,插入图片,插入复选框,插入Word中表格的行数据,删除表格行数据