2

フォームがあります。ユーザーが空白を入力するかどうかを確認するように検証を入れたいです。空白の場合、エラーが表示されます。どうすればこれを行うことができますか?

4

4 に答える 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)空白またはタブを削除するものを使用すると、検証できます。

http://api.jquery.com/jQuery.trim/

于 2012-07-11T09:25:23.403 に答える
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 に答える
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 に答える