关于checkbox的onclick事件 为什么点击第二个复选框还是得到的第一个checkbox的值
<body><inputtype="checkbox"value="1"id="cx"onclick="returncxs();"/>caizhong<inputtype...
<body>
<input type="checkbox" value="1" id="cx" onclick="return cxs();"/>caizhong
<input type="checkbox" value="2" id="cx" onclick="return cxs();"/>ccccc
</body>
</html>
<script type="text/javascript">
function cxs(){
var cz=document.getElementById('cx').value;
alert(cz);
}
</script> 展开
<input type="checkbox" value="1" id="cx" onclick="return cxs();"/>caizhong
<input type="checkbox" value="2" id="cx" onclick="return cxs();"/>ccccc
</body>
</html>
<script type="text/javascript">
function cxs(){
var cz=document.getElementById('cx').value;
alert(cz);
}
</script> 展开
展开全部
protected void Page_Load(object sender, EventArgs e)
{
CheckBox chk = new CheckBox();
chk.Text = "testall"; // 这里可以换成数据库的内容
chk.CheckedChanged += new EventHandler(chk_CheckedChanged);
chk.AutoPostBack = true;
Page.Form.Controls.Add(chk);
for (int i = 0; i < 10; i++)
{
CheckBox chk2 = new CheckBox();
chk2.Text = "test" + i.ToString(); // 这里可以换成数据库的内容
chk2.Checked = (i % 3 == 0); // 这里可以换成数据库的内容
Page.Form.Controls.Add(chk2);
}
}
void chk_CheckedChanged(object sender, EventArgs e)
{
CheckBox all = sender as CheckBox;
foreach(Control ctl in Page.Form.Controls)
{
if (ctl is CheckBox)
{
CheckBox chk = ctl as CheckBox;
chk.Checked = all.Checked;
}
}
}
{
CheckBox chk = new CheckBox();
chk.Text = "testall"; // 这里可以换成数据库的内容
chk.CheckedChanged += new EventHandler(chk_CheckedChanged);
chk.AutoPostBack = true;
Page.Form.Controls.Add(chk);
for (int i = 0; i < 10; i++)
{
CheckBox chk2 = new CheckBox();
chk2.Text = "test" + i.ToString(); // 这里可以换成数据库的内容
chk2.Checked = (i % 3 == 0); // 这里可以换成数据库的内容
Page.Form.Controls.Add(chk2);
}
}
void chk_CheckedChanged(object sender, EventArgs e)
{
CheckBox all = sender as CheckBox;
foreach(Control ctl in Page.Form.Controls)
{
if (ctl is CheckBox)
{
CheckBox chk = ctl as CheckBox;
chk.Checked = all.Checked;
}
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
因为你的check的两个ID是一样的
追问
那我该怎么做才能得到我点击的checkbox的值呀
追答
给个例子你
<script type="text/javascript">
function check(){
var i = document.getElementsByName('ec')[0].checked;
if (i) {
document.getElementsByName('me')[0].checked = true;
} else {
var obj = document.getElementsByName('me');
for(var j=0;j<obj.length;j++){
if (obj[j].checked) {
obj[j].checked = false;
return true;
}
}
}
return true;
}
</script>
<input type="checkbox" name="ec" value="0" onclick="check();" />是否进行计算:
<input type="radio" name="me" value="0" />按方法一计算
<input type="radio" name="me" value="1" />按方法二计算
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询