Mr Shang

我是一个勤劳的码农,每天在技术的牧场辛勤劳作


导航栏
 » 首页
 » 分类浏览
 » 关于我
 » 我的Github
 » RSS订阅
Group 59

Javascript Validator for Input Number

25 Apr 2016 » others

This javascript will validate/allow the number only when event key is pressed. For example result of it:

tutorial above, when you can not directly add the attribute inside html tag. but if you can add it, you can following this tutorial bellow:

<input id="id_price" type="number" min=0 onkeypress="return isNumber(event)"/>
<script type="text/javascript">
function isNumber(evt) {
    evt = (evt) ? evt : window.event;
    var charCode = (evt.which) ? evt.which : evt.keyCode;
    if (charCode > 31 && (charCode < 48 || charCode > 57)) {
        return false;
    }
    return true;
}
</script>

Refference: http://stackoverflow.com/a/7295864

hope it usefull.

© Mr Shang - niceshang[#]outlook.com - Powered by Jekyll.