0

我的页面上有许多不同类型的 ASP.NET 验证器,其中一些我正在禁用,具体取决于页面上的用户选择,使用 javascript。

$.each(Page_Validators, function(index, validator) 
       {
           if ($(validator).hasClass("pain")) {

               ValidatorEnable(validator, false);

        }
});

这似乎有效,并且验证器在所有情况下都不会触发,除了我在无法使用其他验证器类型时使用的任何 CustomValidators

 <asp:CheckBoxList id="BodyPartsList" runat="server" RepeatColumns = "2" 
                    Width="1023px">
                    <asp:ListItem Text = "0. Head/headaches" Value = "1"></asp:ListItem>
                    <asp:ListItem Text = "1. Leg(s)" Value = "2"></asp:ListItem>
                    <asp:ListItem Text = "2. Arm(s)" Value = "3"></asp:ListItem>
                    <asp:ListItem Text = "3. Neck" Value = "4"></asp:ListItem>
                    <asp:ListItem Text = "4. Shoulder(s)" Value = "5"></asp:ListItem>
                    <asp:ListItem Text = "5. Low Back" Value = "6"></asp:ListItem>
                    <asp:ListItem Text = "6. Upper Back" Value = "7"></asp:ListItem>
                    <asp:ListItem Text = "7. Feet" Value = "8"></asp:ListItem>
                    <asp:ListItem Text = "8. Hand(s)" Value = "9"></asp:ListItem>
                    <asp:ListItem Text = "9. Other(Describe in &quot;Details of Plan&quot;)" Value = "10"></asp:ListItem>
                </asp:CheckBoxList>

                <asp:CustomValidator ID="PainLocationValidator" runat="server" Display="Dynamic"
                ErrorMessage="Location of pain is required." 
                ClientValidationFunction="checkPainListValidate" 
                ValidationGroup = "OnSave" EnableClientScript= "true" SetFocusOnError= "true" Width = "100%" CssClass = "pain" />



 function checkPainListValidate(sender, args) {

    args.IsValid = true;

    if ($('#<%= BodyPartsList.ClientID %> input:checked').length > 0)
        args.IsValid = true;

    else
        args.IsValid = false;

}

为什么会这样?我还能做些什么来禁用它们吗?

谢谢。

4

1 回答 1

0

一些 aspx-markup 会有所帮助,但无论如何这里有一些想法:

  • 如果您的验证器为 null 或者您的类型类似于validatorEnable而不是,您是否调试了 javascript 以查看发生了什么ValidatorEnable?你有任何 javascript 错误吗?
  • CustomValidator 是在服务器端还是在客户端验证,我认为 ValidatorEnable 只会在客户端禁用它
  • 设置EnableClientScript为真
  • 如果您未指定 ControlToValidate,则 CustomValidator 将在每次回发时验证,而不管导致它的事件
  • 您是否提供了ClientValidationFunction在客户端调用的?
  • 顺便问一下,您使用的是什么浏览器和什么框架,是 ASP.Net-Ajax 吗?
  • 您是否尝试通过禁用它document.getElementById('<%=MyValidator.ClientID %>').disabled=true;

我假设您使用错误的 ID 在客户端获取验证器。

我已经测试了您的代码,但无法重现此行为:

这是我禁用所有验证器的 Javascript 函数(编辑以考虑您的痛苦等级):

 function disablePainValidators() {
     if ((typeof (Page_Validators) != "undefined") && (Page_Validators != null)) {
         var i;
         for (i = 0; i < Page_Validators.length; i++) {
             if(Page_Validators[i].className=='pain')
                 ValidatorEnable(Page_Validators[i], false);
         }
     }
 }
于 2011-02-08T22:03:57.033 回答