ASP.NET 像 ValidationGroup 使用 JQuery 验证插件?
我们正在尝试让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://docs.jquery.com/Plugins/Validation
您需要做的是调用以下代码,其中“#myForm”是您要验证的表单的 ID:
您的表单将如下所示:
您运行 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:
Your form would look like this:
Each form you run validate() on will automatically cause validation when the submit button is clicked on it.