Created
July 22, 2013 05:17
-
-
Save WenLiangTseng/6051433 to your computer and use it in GitHub Desktop.
讓HTML的輸入框,只能輸入數字
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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