摘要: //函数名:IsNumber //功能介绍:检查是否为数字 //参数说明:要检查的数字 //返回值:1为是数字,0为不是数字 function IsNumber(num) { var i, j, strTemp; strTemp = "0123456789"; if (num.length == 0) return 0 for (i = 0; i < num.length; i++) { j =... 阅读全文
posted @ 2011-03-08 11:30 木由水 阅读(370) 评论(0) 推荐(0) 编辑