浏览器只允许输入数字

/**
* 只允许输入数字
* @return
*/
function onlyNum() {
var code;
var evt = document.all ? window.event : arguments.callee.caller.arguments[0];
if(document.all){
code = evt.keyCode;
if(!(code<58&&code>47)&&code!=8&&!(code<106&&code>95))
return code.returnValue = false;
}else{
code = evt.which;
if(!(code<58&&code>47)&&code!=8&&!(code<106&&code>95))
evt.preventDefault();
}
}

//添加keydown事件
onkeydown='javascript:return onlyNum();'

你可能感兴趣的:(输入数字)