Html
    Css
    Js

    
                        
* {
	margin:0px;
	padding:0px;
}
.tb_table {
	width:500px;
	table-layout:fixed;
	border-collapse:collapse;
}
.tb_table thead {
	background:#CCCCCC;
	color:#fff;
}
.tb_table tbody {
	display:block;
	width:100%;
	overflow:auto;
	height:100px;
}
.tb_table thead tr {
	display:block;
}
.tb_table th,.tb_table td {
	text-align:center;
	width:200px;
}

                        
↑上面代码改变,会自动显示代码结果 jQuery调用版本:2.1.1
 立即下载

表格的全选、删除等操作

更新时间:2021-08-15 22:31:37

表格的全选,单选,删除等操作

1
      DFFZMXJ0
      2021/8/29 1:09:10
      可以在js的9、10行之间加行代码,在选中一部分时可以显示不确定态: $("input[name='checkall']").prop('indeterminate', !!itemchecklength); 回复