任何人都可以帮我解决这个简单的问题。如何在表单提交后清除单选按钮列表的选择。我需要在我的 asp.net Web 应用程序中使用它。当用户单击清除按钮时,我需要清除单选按钮列表的选择。提前致谢
问问题
35079 次
4 回答
13
您可以 - 设置 myrbList.SelectedIndex = -1,- 或通过其 .Items 进行 foreach 并设置每个 item.Selected = false
于 2012-04-14T11:36:47.490 回答
2
RadioButtonList1.ClearSelection();
于 2018-09-11T03:09:09.003 回答
1
//代码示例:
foreach(ListItem li in RadioButtonList1)`
{
if(li.Selected)
{
li.Selected = false;
}
}
//或者使用这个(这是最好的
RadioButtonList1.SelectIndex = -1
于 2014-08-04T11:20:20.003 回答
0
使用这行代码 insted 循环遍历每个项目,使用 foreach 清除 RadioButtonList
RadioButtonList1.SelectedIndex=-1;
于 2016-01-23T12:06:13.717 回答