摘要: 1 function checkTextDataForNORMAL(strValue) 2 { 3 // 特殊字符验证格式 4 var regTextChar = /([\*"\'\/])+/ ; 5 return !regTextChar.test(strValue); 6 } 7 8 9 function checkTextDataForINTEGER(strValue) 10 { 11 var regTextInteger = /^(-|\+)?(\d)*$/; 12 return regTextInteger.test(strValue); 13 } 14 1... 阅读全文
posted @ 2013-08-02 14:31 Seaurl 阅读(408) 评论(0) 推荐(0) 编辑