内联JavaScript验证不起作用

时间:2018-06-04 04:53:57

标签: javascript html5 inline

我尝试验证这样的一些输入。但这不起作用..正确的方法没有使用外部JS或外部方法......

<input type='number' class='form-control input-sm' onkeypress="return this.value < = 100;">

1 个答案:

答案 0 :(得分:1)

而不是keypress使用onkeyup

<input type='number' class='form-control input-sm'
 onkeyup="this.value =(this.value <= 100) ? this.value : '';">

JSFiddle example