Skip to content

Instantly share code, notes, and snippets.

@YusukeHirao
Created September 23, 2012 06:31
Show Gist options
  • Save YusukeHirao/3769091 to your computer and use it in GitHub Desktop.
Save YusukeHirao/3769091 to your computer and use it in GitHub Desktop.
Pattern of HTML5
<input type="text" name="hoge" pattern="abc">
// JavaScriptの場合
/abc/;
// JavaScriptの場合
/^abc$/;
<input type="text" name="hoge" pattern=".*abc.*">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment