我想将以下内容重写为HTML模式:
if (/\S/.test(myString)) {
// string is not empty and not just whitespace
}
所以
<input pattern="\S" required">
if ($('form :invalid'))
console.log('empty');
else
console.log('has non-whitespace char');
问题是我的模式与测试字符串的工作方式不同。我想检查是否至少有一个非空白字符。
答案 0 :(得分:1)
pattern
属性需要完整的字符串匹配,并且模式会自动锚定(无需使用^
和$
)。因此,要求至少1个非空格,请使用
pattern="[\s\S]*\S[\s\S]*"
由于您要验证多行文字(即包含换行符号的文字),因此您需要将其与[\s\S]
或[^]
构造进行匹配。
模式属性仅适用于 <input>
元素。
要验证 textarea 字段,您可以创建自定义pattern
属性验证:
$('#test').keyup(validateTextarea);
function validateTextarea() {
var errorMsg = "Please match the format requested.";
var textarea = this;
var pattern = new RegExp('^' + $(textarea).attr('pattern') + '$');
var hasError = !$(this).val().match(pattern); // check if the line matches the 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;
}
&#13;
:valid, .ok {
background:white;
color: green;
}
:invalid, .error {
background:yellow;
color: red;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form method="post">
<textarea name="test" pattern="[\S\s]*\S[\S\s]*" id="test"></textarea>
<input type="submit" />
</form>
&#13;