我有一个表格。我想进行验证,以便检查用户是否输入空格。如果它的空格则显示错误。我怎么能这样做?
问问题
9910 次
4 回答
10
如果您想通过用户的输入字符串检测是否有任何空白,
var str = $("input").val();
if( str.indexOf(" ") !== -1 )
{
alert("bad input");
}
示例:http: //jsfiddle.net/pYquc/
于 2012-07-11T09:28:13.330 回答
4
使用jQuery.trim(str)
which 删除空格或制表符,您可以验证。
于 2012-07-11T09:25:23.403 回答
0
function doValidations(){
if(jQuery.trim( $(".className").val())==""){
alert("error message");
return false;
}else{
return true;
}
}
<input type="submit" onclick="return doValidations();">
于 2012-07-11T09:26:23.030 回答
0
Try this usong javascript:
var v = document.form.element.value;
var v1 = v.replace("","");
if( v1.length == 0){
alert("error");
}
OR you can use following functions:
// whitespace characters
var whitespace = " \t\n\r";
/****************************************************************/
// Check whether string s is empty.
function isEmpty(s)
{ return ((s == null) || (s.length == 0)) }
/****************************************************************/
function isWhitespace (s)
{
var i;
// Is s empty?
if (isEmpty(s)) return true;
// Search through string's characters one by one
// until we find a non-whitespace character.
// When we do, return false; if we don't, return true.
for (i = 0; i < s.length; i++)
{
// Check that current character isn't whitespace.
var c = s.charAt(i);
if (whitespace.indexOf(c) == -1) return false;
}
// All characters are whitespace.
return true;
}
于 2012-07-11T10:07:31.710 回答