如何跳过所选输入按钮的 jQuery.validity 验证?
我正在使用 jQuery.validity 来验证 PHP 表单输入。当用户单击选定的输入按钮(例如:注销按钮)时,我需要跳过验证
用于验证的示例代码:
$("form").validity(function() {
$("#DateInput")
.require()
.match("date");
});
如何跳过选定输入按钮的验证?
I'm using jQuery.validity to validate PHP form inputs. I need to skip validation when user clicked selected input button (eg: Logout button)
Sample code used for validation:
$("form").validity(function() {
$("#DateInput")
.require()
.match("date");
});
How to skip validation for selected input buttons?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在Validity 官方网站问题部分中发布了这个问题。这是给出的答案
因此设法通过以不同的形式定位输入控件来使其工作
I posted this question in Validity official site, issues section. This is the answer given
So managed to make it work by locating input controls in different forms
将注销按钮更改为
而不是提交
make change the logout button to
<input id="logout" type="button" />
instead of submit