Skip to content

Instantly share code, notes, and snippets.

@songzhiyong
Created November 28, 2013 09:23
Show Gist options
  • Save songzhiyong/7689274 to your computer and use it in GitHub Desktop.
Save songzhiyong/7689274 to your computer and use it in GitHub Desktop.
6-20字符 javascript
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type='text/javascript'>
var reg=/^[\w\_\-]{6,20}$/;
alert(reg.test("12345"));
alert(reg.test("12345+"));
alert(reg.test("12345a-_"));
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment