1. 程式人生 > >js判斷輸入框是否為空,為空格,為回車

js判斷輸入框是否為空,為空格,為回車

js-判斷輸入框是否全為回車、空格或為空  
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>八邑網路-判斷輸入框是否全為回車、空格或為空</title>
<script language="javascript" type="text/javascript">
     function check(){
             var strValue= document.getElementById("contentbox").value;
            strValue=strValue.replace(/\n/g,'');
            if(  javaTrim (strValue)=="")
            {
                 alert('回車、空格、為空');
            }  
         }
    function javaTrim(str) {
     for (var i=0; (str.charAt(i)==' ') && i<str.length; i++);
     if (i == str.length) return ''; //whole string is space
     var newstr = str.substr(i);
     for (var i=newstr.length-1; newstr.charAt(i)==' ' && i>=0; i--);
     newstr = newstr.substr(0,i+1);
     return newstr;
} 
</script>
</head>

<body>
<input id="contentbox" type="text"  /><input type="button" onclick="check();" value="提交" />
</body>
</html>

判斷是否為空空格

function JTrim(s)
{
    return s.replace(/(^\s*)|(\s*$)/g, "");
}

function check(){

var content = $("#content").val();
if(JTrim(content)==""){  
  alert("問題內容不能為空!");
  return false; 
 }
}