ASP.NET 像 ValidationGroup 使用 JQuery 验证插件?

发布于 2024-08-06 12:33:43 字数 295 浏览 4 评论 0原文

我们正在尝试让 JQuery 验证插件在我们的网站上运行,但我们在这里偶然发现了一个问题。

在我们的网站上,我们在每个页面上都为用户提供了一个登录表单,我们希望在其中使用插件来验证用户是否已输入用户名和密码。

我们还有几个页面显示例如某种形式,我们也想使用验证插件进行验证。

我们看到的问题是,无法将用户名和密码文本框分组到登录按钮,并将其他表单中的所有文本框和内容分组到该表单的提交按钮。如果我们使用 ASP.NET 验证器,我们会使用 ValidationGroup 属性,但我还没有找到使用 JQuery 的良好解决方案。

We're trying to get the JQuery validate plugin working on our site but we've stumbled across a problem here.

On our site we have a login form available for the user on every page where we'd like to use the plugin to validate that the user has entered a username and password.

We also have a couple of pages showing for instance some kind of form which we'd also like to validate using the validate plugin.

The problem we've seen is that there is no way to group the username and password textbox to the login button and all the textboxes and stuff in the other form to that form's submit-button. If we'd use the ASP.NET validator we'd use the ValidationGroup attribute but I haven't found a good solution for this using JQuery yet.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

月亮是我掰弯的 2024-08-13 12:33:43

http://docs.jquery.com/Plugins/Validation

您需要做的是调用以下代码,其中“#myForm”是您要验证的表单的 ID:

  $(document).ready(function(){
     $("#myForm").validate();
  });

您的表单将如下所示:

     <form  id="myForm" method="get" action="">
         Name
         <input id="cname" name="name" size="25" class="required" minlength="2" />
         E-Mail
         <input id="cemail" name="email" size="25"  class="required email" />
         <input class="submit" type="submit" value="Submit"/>
     </form>

您运行 validate() 的每个表单都会在单击提交按钮时自动进行验证。

http://docs.jquery.com/Plugins/Validation

What you need to do is call the following code where "#myForm" is the ID of the form you're trying to validate:

  $(document).ready(function(){
     $("#myForm").validate();
  });

Your form would look like this:

     <form  id="myForm" method="get" action="">
         Name
         <input id="cname" name="name" size="25" class="required" minlength="2" />
         E-Mail
         <input id="cemail" name="email" size="25"  class="required email" />
         <input class="submit" type="submit" value="Submit"/>
     </form>

Each form you run validate() on will automatically cause validation when the submit button is clicked on it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文