检测 asp.net mvc2 客户端验证是否通过或失败

发布于 2024-10-05 01:18:59 字数 403 浏览 2 评论 0原文

所有...我正在使用 MicrosoftMvcValidation 的 asp.net mvc2 项目中工作...

我有一些自定义 javascript,需要在发布表单时运行...我当前正在单击提交按钮时运行此代码。但是,当客户端验证失败时,我不想运行代码。

我看到这篇关于挂钩验证的文章,但无法让它工作。 ASP.NET MVC2 - 挂钩客户端验证

有人吗就如何实现以下目标提出建议。

当按下提交按钮并且客户端验证通过时...运行我的自定义代码
当按下提交按钮并且客户端验证失败时...不要运行我的自定义代码

All... I am working in a asp.net mvc2 project using MicrosoftMvcValidation...

I have some custom javascript that I need to run when a form gets posted... I am currently running this code when the submit button is clicked. However, when the client side validation fails I do not want to run the code.

I see this article on hooking into the validation but am unable to get it working.
ASP.NET MVC2 - hook into client side validation

Does anyone have advice on how to achieve the following.

When submit button pressed and client validation passes... run my custom code
When submit button pressed and client validation fails... do not run my custom code

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

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

发布评论

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

评论(2

肤浅与狂妄 2024-10-12 01:18:59

你可以像这样使用 jquery validate $('#your_form_Id').valid() 这将检查表单是否有效,如果有效则返回 true,否则返回 false。

请参阅此处的文档:http://docs.jquery.com/Plugins/Validation/valid .

u can use jquery validate like this $('#your_form_Id').valid() this will check if the form is valid and will return true if valid or else returns false.

See here the documentation : http://docs.jquery.com/Plugins/Validation/valid .

反目相谮 2024-10-12 01:18:59

我会使用 jQuery 进行不显眼的客户端验证。看看这个,它会帮助你找到你想要的东西

I would use jQuery for unobtrusive client-side validation. Take a look at this, it will help you get through what you're looking for

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