我使用 webshim 检查两个文本输入之一是否有文本,并认为自定义有效性听起来是正确的。 http://afarkas.github.io/webshim/demos/demos/webforms/4-webforms-custom-validity.html
有一个名为的方法addCustomValidityRule
如下所示:
$.webshims.addCustomValidityRule('testname', function (elem, value) {
if (value && $(elem).hasClass('test-class') && value != 'foo bar baz') {
return true; //means yes, it's not valid
} else {
return false; //no, it is valid
}
}, 'you have to enter foo bar baz');
但我找不到任何触发它的方法。如何在“提交点击”时触发或运行它?