javascript判斷字元是否為空的方法:先判斷字元是否為空,程式碼為【if(typeof res== "undefined" || res== null || res== "")】;然後透過js調用即可。
本教學操作環境:windows7系統、javascript1.8.5版,DELL G3電腦。
javascript判斷字元是否為空的方法:
js程式碼:
//判断字符是否为空的方法 function IsEmpty(res){ if(typeof res== "undefined" || res== null || res== ""){ return true; }else{ return false; } }
js呼叫:
if (!IsEmpty(value)) { alert(value); }
相關免費學習推薦:javascript(影片)
以上是javascript如何判斷字元是否為空的詳細內容。更多資訊請關注PHP中文網其他相關文章!