<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type ="text/javascript">
window.onload = function () {
var bt = document.getElementById("btn");
bt.onclick = function() {
var cbs = document.getElementsByName("che");
for (var i = 0; i < cbs.length; i++) {
cbs[i].checked = !cbs[i].checked;
}
}
}
</script>
</head>
<body>
<input type ="button" id="btn" value ="test"/>
<input type ="checkbox" name ="che"/><input type ="checkbox" name ="che"/><input type ="checkbox" name ="che"/>
</body>
</html>
时间: 2024-10-09 15:18:32