如何在我自己的 jquery 中调用 MVC3 验证 javascript?
我有一个表单,其中有一个链接,可以触发一些ajax 并传递文本框的值。我希望能够对该文本框进行与单击“提交”时会发生的相同的验证(最好不更改标准 javascript),但不会对表单中具有验证的其他所有内容触发验证。
我需要在点击时调用特定的函数吗?
I have a form that has a link that fires off some ajax and passes through the value of a text box. I would like to be able to cause the same validation on that text box that would occur if I had clicked submit (and preferably without any changing of the standard javascript) but not fire off the validation for everything else in the form that has validation.
Is there a particular function that I need to call on the click?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MVC3 使用 jQuery 验证插件。
调用
$('表单选择器').validate().form()
。MVC3 uses the jQuery Validate plugin.
Call
$('form selector').validate().form()
.