如何在select中option添加复选框

 我来答
没ymh
2017-11-01 · TA获得超过2045个赞
知道大有可为答主
回答量:1364
采纳率:67%
帮助的人:200万
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<script type="text/javascript" src="../js/jquery-1.3.2.min.js"></script>

<style>
.outlayer{
width:60% ;
height:400px;
border:1px solid blue;
margin-left:20%;
margin-right:20%;
text-align:center
}
.list{
margin-top:5px;
margin-left:4%;
margin-right:4%;
float:left;
width:25%;
height:300px;
margin-right:50xp;
border:1px solid red;
}
.title{
height:30px;
width:100%;
background-color:#000066;
padding-top:10px;
}
.title span{
font-size:10xp;
font-family:"宋体";
color:#FFFFFF;
}

.select{
width: 90%;
height:230px;
margin:0px 10px 10px 10px;
text-align:left;
border:2px solid #CCCCCC;
overflow-y:scroll;
overflow-x:hidden;
table-layout: fixed;
word-wrap:break-word;
word-break:break-all;
}

</style>
<script>
$(function(){
//全选/取消全选
$("input[id='selectAll']").live("click",function(){
if($(this).is(':checked')){
$(this).parent().parent().find(".select input").each(function(i){
$(this).attr("checked",true);
});
}else{
$(this).parent().parent().find(".select input").each(function(i){
$(this).attr("checked",false);
});
}
});

});
</script>
</head>
<body>
<div class="outlayer">
<div class="list">
<div class="title">
<span>选择快递月份信息</span>
</div>
<div align="left" style="margin-left:10px;"><input type="checkbox" id="selectAll"/>全部</div>

<div class="select" >
<%for(int i=1;i<=12;i++){%>
<div><input type="checkbox" value="<%=i%>" name="mouth"/><%=i%></div>
<%}%>
</div>
</div>
</div>

</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式