使用JavaScript评估RadioButtonList控件 - ASP.Net

时间:2010-11-08 09:48:05

标签: javascript asp.net radiobuttonlist

我正在使用asp.net和C#开发一个网站。

我正在使用RadioButtonList控件。 RadioButtonList的代码片段如下所示

 <asp:RadioButtonList ID="RLCompareParameter" runat="server" 
            RepeatDirection="Horizontal" meta:resourcekey="rsKey_RLCompareParameter" 
            AutoPostBack="True" 
            onselectedindexchanged="RLCompareParameter_SelectedIndexChanged">
          <asp:ListItem Selected="True" Value="Forms" meta:resourcekey="rsKey_RLCompareParameterListItemForms" Text="Forms"></asp:ListItem>
          <asp:ListItem Value="Segments" meta:resourcekey="rsKey_RLCompareParameterListItemSegments" Text="Segments"></asp:ListItem>
          <asp:ListItem Value="Questions" meta:resourcekey="rsKey_RLCompareParameterListItemQuestions" Text="Questions"></asp:ListItem>
     </asp:RadioButtonList>

同一页面中有一个按钮。点击该按钮时,我想使用javascript显示基于所选单选项列表项的警报消息。我的javascript函数的某些部分如下所示

  var RLCompareParameter = this.document.getElementById("<%= RLCompareParameter.ClientID %>");
         if (RLCompareParameter.SelectedValue == "Forms") {
             if (document.getElementById("<%= lbAvailableForms.ClientID %>").value == "") {
                 alert("Please select a form from Available Evaluation Forms ");
                 return false;
             }


         } else if (RLCompareParameter.SelectedValue == "Segments") {
             if (document.getElementById("<%= lbAvailableSegments.ClientID %>").value == "") {
                 alert("Please select a segment from the available segments ");
                 return false;
             }
         } else if (RLCompareParameter.SelectedValue == "Questions") {
             if (document.getElementById("<%= lbAvailableQuestions.ClientID %>").value == "") {
                 alert("Please select a Question from the available questions");
                 return false;

             } 
         }

但是if(RLCompareParameter.SelectedValue ==“某个值”)总是假的。我认为RadioButtonList控件没有选择值的属性。我希望有人帮助我

1 个答案:

答案 0 :(得分:2)

在html中,没有RadioButtonList这样的东西。您的RLCompareParameter变量将是对包含三个输入元素的表或跨度的引用(这就是ASP.NET控件输出到您的页面中的内容)。 SelectedValue仅适用于ASP.NET代码,而不适用于JavaScript。

您必须获取对特定input元素本身的引用,并在if语句中查看其checked属性,以查看是否选中了该单选按钮。有几种方法可以做到这一点。这是一个可能有效的方法:

 var RLCompareParameter = document.getElementById("<%= RLCompareParameter.ClientID %>");
 var radioButtons = RLCompareParameter.getElementsByTagName('input');

 if (radioButtons[0].checked) {
     if (document.getElementById("<%= lbAvailableForms.ClientID %>").value == "") {
         alert("Please select a form from Available Evaluation Forms ");
         return false;
     }
 } else if (radioButtons[1].checked) {
     if (document.getElementById("<%= lbAvailableSegments.ClientID %>").value == "") {
         alert("Please select a segment from the available segments ");
         return false;
     }
 } else if (radioButtons[2].checked) {
     if (document.getElementById("<%= lbAvailableQuestions.ClientID %>").value == "") {
         alert("Please select a Question from the available questions");
         return false;

     } 
 }