Skip to content

Instantly share code, notes, and snippets.

@WenLiangTseng
Created July 22, 2013 05:17
Show Gist options
  • Save WenLiangTseng/6051433 to your computer and use it in GitHub Desktop.
Save WenLiangTseng/6051433 to your computer and use it in GitHub Desktop.
讓HTML的輸入框,只能輸入數字
<input type="text" class="numbersOnly" value="" />
//And:
jQuery('.numbersOnly').keyup(function () {
this.value = this.value.replace(/[^0-9\.]/g,'');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment