如何获取选中checkbox值
并将选中的值或多个作为关键字在表单中传输出去<formmethod="post"name="sousuo"action="{$$WebCode$$}/search2.ht...
并将选中的值或多个作为关键字在表单中传输出去
<form method="post" name="sousuo" action="{$$WebCode$$}/search2.html">
<div class="pGroup lastList">
<p style="cursor:default"><input name="themeGroup" style="margin-left: 10px;cursor:pointer" type="checkbox" value="人事工作" /><label>人事工作</label></p>
</div>
<div class="pGroup lastList">
<p style="cursor:default"><input name="themeGroup" style="margin-left: 10px;cursor:pointer" type="checkbox" value="人口与计划生育" /><label>人口与计划生育</label></p>
</div>
<div class="pGroup lastList">
<p style="cursor:default"><input name="themeGroup" style="margin-left: 10px;cursor:pointer" type="checkbox" value="优抚安置" /><label>优抚安置</label></p>
</div>
<div class="pGroup lastList">
<p style="cursor:default"><input name="themeGroup" style="margin-left: 10px;cursor:pointer" type="checkbox" value="国土资源、能源" /><label>国土资源、能源</label></p>
</div>
<div class="btn_comfirm"><input name="" type="button" value="" id="btn_comfirm" onclick="javascript:document.sousuo.submit();"></div> 展开
<form method="post" name="sousuo" action="{$$WebCode$$}/search2.html">
<div class="pGroup lastList">
<p style="cursor:default"><input name="themeGroup" style="margin-left: 10px;cursor:pointer" type="checkbox" value="人事工作" /><label>人事工作</label></p>
</div>
<div class="pGroup lastList">
<p style="cursor:default"><input name="themeGroup" style="margin-left: 10px;cursor:pointer" type="checkbox" value="人口与计划生育" /><label>人口与计划生育</label></p>
</div>
<div class="pGroup lastList">
<p style="cursor:default"><input name="themeGroup" style="margin-left: 10px;cursor:pointer" type="checkbox" value="优抚安置" /><label>优抚安置</label></p>
</div>
<div class="pGroup lastList">
<p style="cursor:default"><input name="themeGroup" style="margin-left: 10px;cursor:pointer" type="checkbox" value="国土资源、能源" /><label>国土资源、能源</label></p>
</div>
<div class="btn_comfirm"><input name="" type="button" value="" id="btn_comfirm" onclick="javascript:document.sousuo.submit();"></div> 展开
展开全部
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;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询