Asp.Net 单选按钮列表的 Javascript 验证

发布于 2024-10-17 11:24:27 字数 509 浏览 7 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热风软妹 2024-10-24 11:24:27

让您自己更轻松,无需自己编写 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 值,并通知它以比较验证例程中的值。

function GetRadioButtonValue(id)
{
    var radio = document.getElementsByName(id);
    for (var j = 0; j < radio.length; j++)
    {
        if (radio[j].checked)
            alert(radio[j].value);
    }
}

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.

function GetRadioButtonValue(id)
{
    var radio = document.getElementsByName(id);
    for (var j = 0; j < radio.length; j++)
    {
        if (radio[j].checked)
            alert(radio[j].value);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文