admin管理员组文章数量:1345400
I have a form that uses this plugin:
/
Works great - but I cant figure how to validate by a specific string in-putted into a text field. For example, I want to create a rule that only validates a field if the users input is "foo".
There is documentation here
But none of them seem to be the one I want. Does anyone know a way to get round this?
Thanks!
I have a form that uses this plugin:
http://bassistance.de/jquery-plugins/jquery-plugin-validation/
Works great - but I cant figure how to validate by a specific string in-putted into a text field. For example, I want to create a rule that only validates a field if the users input is "foo".
There is documentation here http://docs.jquery./Plugins/Validation#API_Documentation
But none of them seem to be the one I want. Does anyone know a way to get round this?
Thanks!
Share Improve this question edited Jan 8, 2013 at 6:27 MeltingDog asked Jan 8, 2013 at 6:20 MeltingDogMeltingDog 15.6k52 gold badges178 silver badges322 bronze badges 1- try this stackoverflow./questions/4439119/… – Sibu Commented Jan 8, 2013 at 6:29
2 Answers
Reset to default 11Simple one...
$.validator.addMethod("equals", function(value, element, string) {
return value === string;
}, $.validator.format("Please enter '{0}'"));
$("#form").validate({
rules: {
name: {
required: true,
equals: "foo"
}
}
});
Updated according to your requirement
$.validator.addMethod("equals", function(value, element, string) {
return $.inArray(value, string) !== -1;
}, $.validator.format("Please enter '{0}'"));
$("#form").validate({
rules: {
name: {
required: true,
equals: ["foo", "bar", 'blah"]
}
},
messages: {
name: "Please enter either '{0}' or '{1}' or '{2}'"
}
});
referred from Here
$.validator.addMethod(
"regex",
function(value, element, regexp) {
var re = new RegExp(regexp);
return this.optional(element) || re.test(value);
},
"Please check your input."
);
now validate textbox:
$("#Textbox").rules("add", { regex: "/* your regex */" })
本文标签: javascriptJQuery Form Validation pluginvalidate specific stringStack Overflow
版权声明:本文标题:javascript - JQuery: Form Validation plugin - validate specific string? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743786742a2538822.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论