说明: 内容简介: //檢查空串 function isEmpty(str){ if((str == null)||(str.length == 0)) return (true); else return(false); } //檢查是否未數字 function isDigit(theNum){ var theMask = "0123456789"; if (isEmpty(theNum)) return(false); else if(theMask.indexOf(theNum) == -1)
<yymbk> 上传 | 大小:78kb