当前位置: 代码迷 >> JavaScript >> Javascript 印证数字是否正确
  详细解决方案

Javascript 印证数字是否正确

热度:128   发布时间:2012-08-29 08:40:14.0
Javascript 验证数字是否正确

?

function zk_validationNumber(tag,min,max) 
  {
	  if (checkRate(tag)) {
		alert("请输入数字");
		tag.focus();
		tag.select();
	  }
	  else if ($(tag).val() > max) {
			alert("数字越界");
			tag.focus();
			tag.select();
	  }
	  else if ($(tag).val() < min) {
			alert("数字太小");
			tag.focus();
			tag.select();
	  }
  }
function checkRate(input)
{
	 var re = /^[0-9]+?[0-9]*$/; 
	 if (!re.test(input.value))
	 {
		return true;
	 }
	 else {
		 return false;
	 }
}
?

?

?

?

  相关解决方案