代码拉取完成,页面将自动刷新
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript" src="JQuery-js文件/jquery-3.3.1.js"></script>
<script type="text/javascript">
window.onload = main;
function main(){
$(":checkbox:first").click(fun1);
$(":checkbox:gt(0)").click(fun2);
$(":table tr:gt(0)").mouseover(fun3);
$(":table tr:gt(0)").mouseout(fun4);
}
function fun1(){
var flag = $(":checkbox:first").prop("checked");
$(":checkbox:gt(0)").prop("checked",flag);
}
function fun2(){
var ckNum = $(":checkbox:gt(0)").length;
var checkedNum = $(":checkbox:gt(0):checked:").length;
if(ckNum == checkedNum){
$(":checkbox:first").prop("checked",true);
}else{
$(":checkbox:first").prop("checked",false);
}
}
function fun3(){
//this:鼠标悬停的tr标签
$(this).css("background-color","red");
}
function fun4(){
//this:鼠标悬停的tr标签
$(this).css("background-color","white");
}
</script>
<body>
<center>
<table border="2">
<tr>
<td>职员姓名</td>
<td>职员职位</td>
<td>职员工资</td>
<td><input type="checkbox">全选与全不选
<input type="button" value="删除" onclick="fun1();"/> </td>
</tr>
<tr>
<td>allen</td>
<td>高级工程师</td>
<td>20000</td>
<td><input type="checkbox"></td>
</tr>
<tr>
<td>allen</td>
<td>高级工程师</td>
<td>20000</td>
<td><input type="checkbox"></td>
</tr>
<tr>
<td>allen</td>
<td>高级工程师</td>
<td>20000</td>
<td><input type="checkbox"></td>
</tr>
</table>
</center>
</body>
</head>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。