摘要:
//校验是否是数字、字母和下划线[code] onkeyup="value=value.replace(/[\W]/g,'')"[/code]//校验是否是数字、字母、下划线和减号[code] onkeyup="value=value.replace(/[^a-zA-Z0-9_-]/g,'')"[/code]//校验是否全由数字组成[code] function isDigit(s) { var patrn=/^[0-9]{1,20}$/; if (!patrn.exec(s)) return false return t 阅读全文