//---------------------------------------------------------- // 功能:检查是否是数字 // 参数: // str // 返回值: // true 符合数字格式 // false 不符合数字格式 //---------------------------------------------------------- function IsNum(str) { if(str.length==0) { return false; } for(var i=0;i<str.length;i++) { if(str.charAt(i)<"0" || str.charAt(i)>"9") { return false; } } return true; }
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/13272.html