JavaScript判斷字串是否為空

admin發表於2018-07-16

判斷字串是否為空時最為常用的操作之一。

比如簡單表單驗證中,會驗證輸入使用者名稱或者密碼是否為空。

程式碼例項如下:

[JavaScript] 純文字檢視 複製程式碼執行程式碼
String.prototype.trim=function(){  
  return this.replace(/(^\s*)|(\s*$)/g,"");  
}
function isEmpty(str){ 
  if(str==null||typeof str=="undefined"||str.trim()==""){ 
    return true; 
  }
  else{ 
    return false; 
  } 
}

程式碼能夠驗證指定的字串是否為空,並且字串中不能有空格字元。

相關文章