Asp.Net 单选按钮列表的 Javascript 验证
我正在使用 asp.net 单选按钮列表。
<asp:RadioButtonList ID="rbtnAEreq" RepeatDirection="Horizontal" runat="server">
<asp:ListItem Text="Yes" Value="true"></asp:ListItem>
<asp:ListItem Text="No" Value="false"></asp:ListItem>
</asp:RadioButtonList>
在按钮单击事件中,我想验证单选按钮列表。我的条件是要么是要么不是。如何在 JavaScript 中做到这一点...
I am using a asp.net radiobuttonlist.
<asp:RadioButtonList ID="rbtnAEreq" RepeatDirection="Horizontal" runat="server">
<asp:ListItem Text="Yes" Value="true"></asp:ListItem>
<asp:ListItem Text="No" Value="false"></asp:ListItem>
</asp:RadioButtonList>
on buttonclick event i want to validate the radiobuttonlist. My condition is either yes or no should be selected. How to do it in javascript...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让您自己更轻松,无需自己编写 JavaScript,只需使用RequiredFieldValidator 并设置EnableClientScript =“true”即可。
在这里以及其他地方进行了描述: http://www.geekpedia.com/tutorial82_Validate-using -RequiredFieldValidator.html
该控件是开箱即用的,具有标准的验证控件,因此请让自己轻松起来,不要重新发明轮子(除非您可以制作更好的轮子)。
编辑
您没有提及是否可以使用 JQuery 编写脚本。如果是的话,那么您可以通过 JQuery 来完成此操作。 http://www.shawnduggan.com/?p=126 对于RadioButtonList 作为 CheckBoxList。
最后,如果 JQuery 也不是一个选项,并且您确实想使用 javaScript,您可以获取下拉列表的选定值并将其与您的预期值进行比较。获取所选值的代码很简单。您可以使用此代码来测试获取 hte 值,并通知它以比较验证例程中的值。
Make it easier on yourself, and instead of writing JavaScript yourself, simply use a RequiredFieldValidator and set EnableClientScript = "true".
It's described here, among other places: http://www.geekpedia.com/tutorial82_Validate-using-RequiredFieldValidator.html
The control exists, out of the box, with the standard Validation controls, so make it easy on yourself and don't re-invent the wheel (unless you can make a better wheel).
Edit
You dind't mention whether you are able to use JQuery for the scripting. If you are, then you can do this via JQuery. http://www.shawnduggan.com/?p=126 It works the same for a RadioButtonList as a CheckBoxList.
And finally, if JQuery is also not an option and you REALLY want ot use javaScript, you can get the selected value of the drop-down list and compare it to your expected value. The code for getting the selected value is simple. You can use this code to test getting hte value, and them nodify it to compare the value in your validation routine.