如何在使用jquery验证textarea时检查null,空格和换行。 如果textarea为空并且只有新行或空格应该发出警报
答案 0 :(得分:5)
if($.trim($('#myTextArea').val()) == '') {
//error
}
答案 1 :(得分:0)
假设html看起来像
<form id='someForm'>
<input type="text" id='textInput' name='textInput'/>
</form>
首先创建一个jquery验证方法。
jQuery.validator.addMethod("checkForWhiteSpaceErrors", function(value, element, param){
var elem = $(element);
var val = element.val();
//Now you have a choice. Either use trim, or if you believe that
// that is not working, use a regex.
if(val && $.trim(val) == '') {
return false;
}
//or
if(val && val.match(/^\s+|\s+$/g)) {
return false;
}
return true;
}, "Newlines and White Spaces are not allowed.");
现在告诉表单验证器使用这种方法很简单。
$('#someForm').validate({
rules: {
textInput: {
checkForWhiteSpaceErrors: true
}
}
});
答案 2 :(得分:0)
谢谢'Keith Rousseau'!有效。 而且如果你有一个文本框和一个textarea而不是jquery代码就可以了:
$(document).ready(function () {
$('#message_submit').click(function (e) { //submit button ID
var isValid = true;
$('input[type="text"]').each(function () { //textbox type
if ($.trim($(this).val()) == '' || $.trim($('#body').val()) == '') { //#body is textarea ID
alert('Text box can't left empty');
return false;
}
else
alert('Thanks for your valuable input!\nWe will get back to you soon.');
});
});
});