天天看点

三行代码搞定input框number类型输入E字母问题

$('input[type=number]').keypress(function (e) {
    if (!String.fromCharCode(e.keyCode).match(/[0-9\.]/)) return false;
});
           

对你有帮助的话,右上角给个赞呗~