检测 asp.net mvc2 客户端验证是否通过或失败
所有...我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以像这样使用 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 .
我会使用 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