javascript怎么设置某个div下面所有checkbox的?
展开全部
以下是用Jquery实现的全选 呵呵!!
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
function selAllCheckbox()
{
$("form>div>input").attr("checked","true");
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="div1">
<input id="Checkbox1" type="checkbox" />
<input id="Checkbox2" type="checkbox" />
<input id="Checkbox4" type="checkbox" />
<input id="Checkbox3" type="checkbox" />
</div>
<input id="btn" type="button" value="全选" onclick="selAllCheckbox()"/>
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
function selAllCheckbox()
{
$("form>div>input").attr("checked","true");
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="div1">
<input id="Checkbox1" type="checkbox" />
<input id="Checkbox2" type="checkbox" />
<input id="Checkbox4" type="checkbox" />
<input id="Checkbox3" type="checkbox" />
</div>
<input id="btn" type="button" value="全选" onclick="selAllCheckbox()"/>
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
var boxes = document.getElementById('abc').getElementsByTagName("checkbox");
for(var i=0; i<boxes.length; i++){
boxes[i].checked = true;
}
for(var i=0; i<boxes.length; i++){
boxes[i].checked = true;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
首先获取所有的 checkbox 的对象,然后设置他们的 checked 属性为 true;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
3楼正解
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询