最简单的html代码实现输入框只能输入正整数,输入同时禁止了以0开始的数字输入,防止被转化为其他进制的数值。 <input type='text' onkeyup="value=value.replace(/^(0+)|[^\d]+/g,'')"> END