//只能是数字、字母或下划线 function isValid(str) { var reg = /^\w+$/g; return reg.test(str); }
posted on 2018-10-18 19:27 头大的冯冯 阅读(2552) 评论(0) 编辑 收藏 举报