Html中一个checkbox控制一组radio全选和全不选,这个怎么实现?要用Jquery吗?谁能给个例子啊!谢谢了!
1个回答
展开全部
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>
RunJS 演示代码
</title>
<style>
*{
margin:0;
padding:0;
}
body{
height: 2000px;
}
div{
border:1px solid black;
text-align:center;
position: absolute;
}
div#div1{
width: 200px;
height: 1500px;
background-color: #fd3;
line-height:1500px;
}
div#div2{
width: 100px;
height: 1000px;
left: 202px;
line-height:1000px;
background-color: red;
}
</style>
<script id="jquery_180" type="text/javascript" class="library" src="/js/sandbox/jquery/jquery-1.8.0.min.js"></script>
<script>
jQuery(function($){
$(":checkbox").change(function(){
$(":radio").prop("checked", $(this).prop("checked"));
});
});
</script>
</head>
<body>
<input type="radio" />1
<input type="radio" />2
<input type="radio" />3
<input type="radio" />4
<input type="radio" />5
<input type="radio" />6
<input type="checkbox" />choose
</body>
</html>
追问
library类是什么?一个radio控制一组checkbox全选和反选,换一下两个选择器的位置,全选可以实现,反选不行?一个checkbox控制一组checkbox应该怎么办?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询