Backspace
不适用于firefox中的onKeyPress
事件
<input type="text" id="txt1" onKeypress='return event.charCode >= 48 && event.charCode <= 57' maxlength="10" onkeyup="functionname()"/>
答案 0 :(得分:0)
尝试使用onkeydown
,因为在浏览器中有更好的支持。
退格的代码为 8 ,且超出了您的范围。
答案 1 :(得分:0)
工作正常:
return ( event.charCode == 0 ) || ( event.charCode >= 48 && event.charCode <= 57)