摘要:
/*** 验证普通字串,只要字串中不包含特殊字符即可*/function checkTextDataForNORMAL(strValue){// 特殊字符验证格式var regTextChar = /([\*\"\'<>\/])+/ ;return !regTextChar.test(strValue);}/*** 验证整数,包含正整数和负整数*/function checkTextDataForINTEGER(strValue){var regTextInteger = /^(-|\+)?(\d)*$/;return regTextInteger.test(st 阅读全文
posted @ 2013-01-11 09:28
赤日枫叶
阅读(171)
评论(0)
推荐(0)

浙公网安备 33010602011771号