<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
.box{width:70px;height:150px;background:green;margin:50px auto;padding-top:10px;padding-left:15px;border-radius:30px 0px 30px 0px;border:5px solid #000;}
.box div{border-bottom:3px solid #ccc;margin:5px auto;padding-bottom:5px;}
.box input{margin:2px;}
</style>
<script type="text/javascript">
function checkAll(){
var checkall,item;
checkall=document.getElementById("checkall")
item=document.getElementsByName("item[]")
for(var i=0;i<item.length;i++){
if(checkall.checked){
item[i].checked=ture;
}else{
item[i].checked=false;
}
}
}
</script>
<title>这是我的选项作业</title>
</head>
<body>
<div class="box">
<div>
<input type="checkbox" id="checkall" onclick="checkAll()"><label for="checkall">全选</label>
</div>
<input type="checkbox" name="item[]">英语<br/>
<input type="checkbox" name="item[]">语文<br/>
<input type="checkbox" name="item[]">数学<br/>
<input type="checkbox" name="item[]">物理<br/>
<input type="checkbox" name="item[]">化学<br/>
</div>
</body>
</html>