绑定输入框只能输入数字

input输入框绑定事件

      οnkeyup="if(isNaN(value))execCommand('undo')" onafterpaste="if(isNaN(value))execCommand('undo')"

	function telBind(){

		$("#dome").bind({
			click : function(){
					var dome= $('#dome').val();
				  	if('手机号' == dome){
						$('#dome').val('');
						$('#dome').focus();
					}
				},
			blur : function(){
					var tel = $('#dome').val();
					if('' == $.trim(dome)){
						$('#dome').focus();
						$('#dome').val('手机号');
					}
				},
			keydown : function () {  //只能输入数字
			        var e = $(this).event || window.event;  
			        var code = parseInt(e.keyCode);  
			        if (code >= 96 && code <= 105 || code >= 48 && code <= 57 || code == 8 || code==110 || code==190) {  
			            return true;  
			        } else {  
			        	alert("只能输入数字");
			            return false;  
			        }  
			    }
			});
	}


你可能感兴趣的:(jsp,java,jquery,web)