1. 程式人生 > >js判斷輸入字串是否為空、空格、null的方法總結

js判斷輸入字串是否為空、空格、null的方法總結

判斷字串是否為空

var strings = ''; 
if (string.length == 0) 
{ 
alert('不能為空'); 
}

判斷字串是否為“空”字元即使用者輸入了空格

var strings = ' '; 
if (strings.replace(/(^s*)|(s*$)/g, "").length ==0) 
{ 
alert('不能為空'); 
}

判斷輸入字串是否為空或者全部都是空格

function isNull( str ){
if ( str == "" ) return true;
var regu = "^[ ]+$";
var re = new
RegExp(regu); return re.test(str); }

如果有null時上面程式碼就無法正常判斷了,下面程式碼是判斷為null的情況

var exp = null; 
if (exp == null) 
{ 
alert("is null"); 
}

exp 為 undefined 時,也會得到與 null 相同的結果,雖然 null 和 undefined 不一樣。

注意:要同時判斷 null 和 undefined 時可使用本法。 程式碼如下

var exp = null; 
if (!exp) 
{ 
alert("is null"); 
}

如果 exp 為 undefined,或數字零,或 false,也會得到與 null 相同的結果,雖然 null 和二者不一樣。注意:要同時判斷 null、undefined、數字零、false 時可使用本法。程式碼如下

var exp = null; 
if (typeof exp == "null") 
{ 
alert("is null"); 
}

為了向下相容,exp 為 null 時,typeof null 總返回 object,所以不能這樣判斷。

<script type="text/javascript">
function testuser(){
var i= document.getElementByIdx_x("aa");
if (i.value=="null")
{
alert("請登入後再發表留言!")
return false;
}
else
{
alert(i.value)
return
true; } }
</script>