我尝试验证这样的一些输入。但这不起作用..正确的方法没有使用外部JS或外部方法......
<input type='number' class='form-control input-sm' onkeypress="return this.value < = 100;">
答案 0 :(得分:1)
而不是keypress
使用onkeyup
。
<input type='number' class='form-control input-sm'
onkeyup="this.value =(this.value <= 100) ? this.value : '';">