È possibile implementare da soli setCustomValidity()
. In questo modo, this.checkValidity()
risponderà a qualsiasi regola che si desidera applicare al proprio elemento. Non credo che this.validity.patternMismatch
possa essere impostato manualmente, ma è possibile utilizzare invece la propria proprietà, se necessario.
http://jsfiddle.net/yanndinendal/jbtRU/22/
$('#test').keyup(validateTextarea);
function validateTextarea() {
var errorMsg = "Please match the format requested.";
var textarea = this;
var pattern = new RegExp('^' + $(textarea).attr('pattern') + '$');
// check each line of text
$.each($(this).val().split("\n"), function() {
// check if the line matches the pattern
var hasError = !this.match(pattern);
if (typeof textarea.setCustomValidity === 'function') {
textarea.setCustomValidity(hasError ? errorMsg : '');
} else {
// Not supported by the browser, fallback to manual error display...
$(textarea).toggleClass('error', !!hasError);
$(textarea).toggleClass('ok', !hasError);
if (hasError) {
$(textarea).attr('title', errorMsg);
} else {
$(textarea).removeAttr('title');
}
}
return !hasError;
});
}
fonte
2014-01-23 14:59:00
Sembra [ 'textarea' non ha l'attributo' pattern'] (https: // developer.mozilla.org/en-US/docs/HTML/HTML_Elements/textarea?redirectlocale=en-US&redirectslug=HTML%2FElement%2Ftextarea), quindi è probabile che i browser lo ignorino. – Passerby