javascript 限制输入脚本大全

1.只能输入汉字的
<input onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\u4E00-\u9FA5]/g,''))">

2.只能输入数字的:
<input onkeyup="value=value.replace(/[^\d]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))">
简易禁止输入汉字
<input type="text" style="ime-mode:disabled">
输入数字和小数点:
onkeyup="value=value.replace(/[^\d{1,}\.\d{1,}|\d{1,}]/g,'')"
javascript 只能输入数字和":".2007-11-24 15:50<input type=text id="aa1" onkeyup="this.value=this.value.replace(/[^\d&:]/g,'')" onblur="this.value=this.value.replace(/[^\d&:]/g,'')" onafterpaste="this.value=this.value.replace(/[^\d&:]/g,'')"/>
只能数字和":",例如在输入时间的时候可以用到。
<input type=text id="aa" onkeyup="value=value.replace(/[^\w&=]|_/ig,'')" onblur="value=value.replace(/[^\w&=]|_/ig,'')" />
只能输入字母和等号,不能输入汉字。
其它的东西:
只能输入数字的脚本javascript- -
1.<input onkeyup="this.value=this.value.replace(/\D/g,'')"
onafterpaste="this.value=this.value.replace(/\D/g,'')">
上半句意思是键盘键入只能是数字,下半句是粘贴也只能是数字
2.<input name=txt1 onchange="if(/\D/.test(this.value)){alert('只能输入数字');this.value='';}">
3.<input onkeyup="if(isNaN(value))execCommand('undo')" onafterpaste="if(isNaN(value))execCommand('undo')">
JavaScript限制只能输入数字和英文- -
function isregname( checkobj)
{
var checkOK = "0123456789-_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
var checkStr = checkobj;
var allValid = true;
var decPoints = 0;

for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
}
return (allValid)
}
----------------
if(!(isregname(obj.loginname.value))){
alert("[会员代号]不符合规范,会员代号只能是英文字母或数字");
obj.loginname.focus();
return(false);
}
if(!(isregname(obj.password.value))){
alert("[密码]不符合规范,密码只能是英文字母或数字");
obj.password.focus();
return(false);
}

4.javascript只能输入英文和数字的输入框
<input onkeyup="value=value.replace(/[\W]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))">
5.可以用Javascript对文本框进行检查,过滤掉非0-9的字符。
<script language="javascript" event="onkeydown" for="document">
   if(event.srcElement.name=='TextBox1')
   {
   if(!KeyIsNumber(event.keyCode))
   {
   return false;//这句话最关键
   }
   }
  </script>
  <script language="javascript">
  function KeyIsNumber(KeyCode)
  {
   //如果输入的字符是在0-9之间,或者是backspace、DEL键
   if(((KeyCode>47)&&(KeyCode<58))||(KeyCode==8)||(KeyCode==46))
   {
   return true;
   }
   else
   {
   return false;
   }
  }
  </script>[url=http://blog.csdn.net/xujh/admin/EditPosts.aspx][/url]

6.限制在文本框里面只能输入IP地址格式
<HTML>
<head>
<meta http-equiv="Content-Type" content="text/HTML; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<style>
.a3{width:30;border:0;text-align:center}
</style>
<script>
function mask(obj){
obj.value=obj.value.replace(/[^\d]/g,'')
key1=event.keyCode
if (key1==37 || key1==39)
{ obj.blur();
nextip=parseInt(obj.name.substr(2,1))
nextip=key1==37?nextip-1:nextip+1;
nextip=nextip>=5?1:nextip
nextip=nextip<=0?4:nextip
eval("ip"+nextip+".focus()")
}
if(obj.value.length>=3)
if(parseInt(obj.value)>=256 || parseInt(obj.value)<=0)
{
alert(parseInt(obj.value)+"IP地址错误!")
obj.value=""
obj.focus()
return false;
}
else
{ obj.blur();
nextip=parseInt(obj.name.substr(2,1))+1
nextip=nextip>=5?1:nextip
nextip=nextip<=0?4:nextip
eval("ip"+nextip+".focus()")
}
}
function mask_c(obj)
{
clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))
}

</script>
<title>IP地址输入</title>

</head>
<body>IP地址输入
<div style="border-width:1;border-color:balck;border-style:solid;width:165;font-size:9pt">
<input type=text name=ip1 maxlength=3 class=a3 onkeyup="mask(this)" onbeforepaste=mask_c()>.
<input type=text name=ip2 maxlength=3 class=a3 onkeyup="mask(this)" onbeforepaste=mask_c()>.
<input type=text name=ip3 maxlength=3 class=a3 onkeyup="mask(this)" onbeforepaste=mask_c()>.
<input type=text name=ip4 maxlength=3 class=a3 onkeyup="mask(this)" onbeforepaste=mask_c()>
</div>
</body>
</HTML>

7.限制输入格式的日期控件
  
  ----- 日期控件的另一种思路,限制输入格式的日期控件 ----- 关于日期输入,现在网上的日期控件很多,在这里,我试着模仿了部分CS程序中的日期输入控件,从另一个角度来考虑日期格式的输入,即输入日期时固定格式,用户只能在程序规定的地方输入数据。
  例程如下,希望对大家有所帮助~~~ (时间仓促,例程是IE ONLY的)
  <SCRIPT LANGUAGE='JavaScript'>
  /**//*
  * Added by LiuXiaoChong 2005.4.25
  * 限制输入的日期控件
  * Param: txtName 为要限制输入的文本框的名称
  *
  * 功能描述:1,只能输入数字
  * 2,左右键可以移动编辑焦点
  * 3,上下键可以对数据进行微调
  * 4,控件包含了对日期的合法校验
  */
  function regDateControl(txtName)
  {
   var oInput = document.getElementById(txtName);
   oInput.middleChar = '-';
   oInput.selectIndex = 1; //默认选中年
   oInput.maxLength = 10;
   oInput.style.imeMode = 'disabled';
   oInput.value = specialText_GetDate(oInput.middleChar);
   oInput.charWidth = oInput.createTextRange().boundingWidth / oInput.maxLength;
   //注册单击事件
   oInput.onclick = specialText_ClickEvent;
   oInput.onkeydown = specialText_KeyDownEvent;
   oInput.onfocus = function(){specialText_SelectYear(this);}
   oInput.onblur = function()
   {
   specialText_validYear(this);
   specialText_validMonth(this);
   specialText_validDate(this);
   }
   //屏蔽鼠标右键和拖动操作
   oInput.oncontextmenu = function(){return false;}
   oInput.ondrop = function(){return false;}
  }
  //鼠标单击,根据位置对日期进行分体选择
  function specialText_ClickEvent()
  {
   event.cancelBubble = true;
   specialText_validYear(this);
   specialText_validMonth(this);
   specialText_validDate(this);
   if(event.offsetX <= specialText_getCharWidth(this.charWidth,4))
   specialText_SelectYear(this);
   else if(event.offsetX > specialText_getCharWidth(this.charWidth,4)
   && event.offsetX <= specialText_getCharWidth(this.charWidth,7))
   specialText_SelectMonth(this);
   else if(event.offsetX > specialText_getCharWidth(this.charWidth,7))
   specialText_SelectDate(this);
  }
  //选中年份
  function specialText_SelectYear(oInput)
  {
   var oRange = oInput.createTextRange();
   oRange.moveStart('character',0);
   oRange.moveEnd('character',-6);
   //代表选中了年
   oInput.selectIndex = 1;
   oRange.select();
  }
  //选中月份
  function specialText_SelectMonth(oInput)
  {
   var oRange = oInput.createTextRange();
   oRange.moveStart('character',5);
   oRange.moveEnd('character',-3);
   //代表选中了月
   oInput.selectIndex = 2;
   oRange.select();
  }
  //选中日期
  function specialText_SelectDate(oInput)
  {
   var oRange = oInput.createTextRange();
   oRange.moveStart('character',8);
   //代表选中了日期
   oInput.selectIndex = 3;
   oRange.select();
  }
  //校验年份有效性
  function specialText_validYear(oInput)
  {
   var arrValue = oInput.value.split(oInput.middleChar);
   var strYear = arrValue[0];
   if(parseInt(strYear,10) == 0)
   arrValue[0] = 2000;
   //如果年份小于4位,则在2000基础上增加
   else if(strYear.length < 4)
   arrValue[0] = 2000 + parseInt(strYear,10);
   oInput.value = arrValue.join(oInput.middleChar);
  }
  //校验月份有效性
  function specialText_validMonth(oInput)
  {
   var arrValue = oInput.value.split(oInput.middleChar);
   var strMonth = arrValue[1];
   //如果月份输入了0,则按1月处理
   if(parseInt(strMonth,10) == 0)
   arrValue[1] = '01';
   //如果月份是一位,则前面补0
   else if(strMonth.length < 2)
   arrValue[1] = '0' + strMonth;
   //如果月份大于12月,自动转为12月
   else if(parseInt(strMonth,10) > 12)
   arrValue[1] = '12';
   oInput.value = arrValue.join(oInput.middleChar);
  }
  //校验日期有效性
  function specialText_validDate(oInput)
  {
   var arrValue = oInput.value.split(oInput.middleChar);
   var strYear = arrValue[0];
   var strMonth = arrValue[1];
   var strDate = arrValue[2];
   var intMonth = parseInt(strMonth,10);
   if(parseInt(strDate,10) == 0)
   arrValue[2] = '01';
   else if(strDate.length < 2)
   arrValue[2] = '0' + strDate;
   else
   {
   //如果超过了月份的最大天数,则置为最大天数
   var monthMaxDates = specialText_getMonthDates(strYear,strMonth);
   if(parseInt(strDate,10) > monthMaxDates)
   arrValue[2] = monthMaxDates;
   }
   oInput.value = arrValue.join(oInput.middleChar);
  }
  function specialText_YearAdd(oInput,isMinus)
  {
   var arrValue = oInput.value.split(oInput.middleChar);
   var strYear = arrValue[0];
   if(isMinus)
   {
   arrValue[0] = parseInt(strYear,10) - 1;
   if(parseInt(arrValue[0],10) < 1)
   arrValue[0] = '0001';
   }
   else
   arrValue[0] = parseInt(strYear,10) + 1;
   oInput.value = arrValue.join(oInput.middleChar);
   specialText_validYear(oInput);
   specialText_SelectYear(oInput);
  }
  function specialText_MonthAdd(oInput,isMinus)
  {
   var arrValue = oInput.value.split(oInput.middleChar);
   var strMonth = arrValue[1];
   if(isMinus)
   {
   arrValue[1] = parseInt(strMonth,10) - 1;
   if(parseInt(arrValue[1],10) == 0)
   arrValue[1] = '12';
   }
   else
   {
   arrValue[1] = parseInt(strMonth,10) + 1;
   if(parseInt(arrValue[1],10) == 13)
   arrValue[1] = '01';
   }
   oInput.value = arrValue.join(oInput.middleChar);
   specialText_validMonth(oInput);
   specialText_SelectMonth(oInput);
  }
  function specialText_DateAdd(oInput,isMinus)
  {
   var arrValue = oInput.value.split(oInput.middleChar);
   var strYear = arrValue[0];
   var strMonth = arrValue[1];
   var strDate = arrValue[2];
   var monthMaxDates = specialText_getMonthDates(strYear,strMonth);
   if(isMinus)
   {
   arrValue[2] = parseInt(strDate,10) - 1;
   if(parseInt(arrValue[2],10) == 0)
   arrValue[2] = monthMaxDates;
   }
   else
   {
   arrValue[2] = parseInt(strDate,10) + 1;
   if(parseInt(arrValue[2],10) == (monthMaxDates + 1))
   arrValue[2] = '01';
   }
   oInput.value = arrValue.join(oInput.middleChar);
   specialText_validDate(oInput);
   specialText_SelectDate(oInput);
  }
  function specialText_KeyDownEvent()
  {
   //如果按了数字键
   if((event.keyCode >= 48 && event.keyCode <= 57) ||
   (event.keyCode >= 96 && event.keyCode <= 105))
   {
   var oRange = document.selection.createRange();
   if(oRange.text.indexOf(this.middleChar) != -1)
   event.returnValue = false;
   else
   event.returnValue = true;
   }
   //如果按了方向键
   else if(event.keyCode >= 37 && event.keyCode <= 40)
   {
   event.returnValue = false;
   var keyCode = event.keyCode;
   //按了左键
   if(keyCode == 37)
   {
   if(this.selectIndex == 1)
   {
   specialText_validYear(this);
   specialText_SelectDate(this);
   }
   else if(this.selectIndex == 2)
   {
   specialText_validMonth(this);
   specialText_SelectYear(this);
   }
   else if(this.selectIndex == 3)
   {
   specialText_validDate(this);
   specialText_SelectMonth(this);
   }
   }
   //按了右键
   if(keyCode == 39)
   {
   if(this.selectIndex == 1)
   {
   specialText_validYear(this);
   specialText_SelectMonth(this);
   }
   else if(this.selectIndex == 2)
   {
   specialText_validMonth(this);
   specialText_SelectDate(this);
   }
   else if(this.selectIndex == 3)
   {
   specialText_validDate(this);
   specialText_SelectYear(this);
   }
   }
   //按了上键
   if(keyCode == 38)
   {
   if(this.selectIndex == 1)
   {
   specialText_validYear(this);
   specialText_YearAdd(this,true);
   }
   else if(this.selectIndex == 2)
   {
   specialText_validMonth(this);
   specialText_MonthAdd(this,true);
   }
   else if(this.selectIndex == 3)
   {
   specialText_validDate(this);
   specialText_DateAdd(this,true);
   }
   }
   //按了下键
   if(keyCode == 40)
   {
   if(this.selectIndex == 1)
   {
   specialText_validYear(this);
   specialText_YearAdd(this,false);
   }
   else if(this.selectIndex == 2)
   {
   specialText_validMonth(this);
   specialText_MonthAdd(this,false);
   }
   else if(this.selectIndex == 3)
   {
   specialText_validDate(this);
   specialText_DateAdd(this,false);
   }
   }
   }
   //如果按了F5 或 TAB,不屏蔽
   else if(event.keyCode == 116 || event.keyCode == 9)
   event.returnValue = true;
   else
   {
   event.returnValue = false;
   event.keyCode = 0;
   }
  }
  /**//*---------------------辅助函数-----------------------*/
  //得到默认日期
  function specialText_GetDate(middleChar)
  {
   var oDate = new Date();
   return oDate.getYear() + middleChar
   + (oDate.getMonth() < 10 ? ('0' + oDate.getMonth()) : oDate.getMonth()) + middleChar
   + (oDate.getDate() < 10 ? ('0' + oDate.getDate()) : oDate.getDate());
  }
  //得到字符像素宽度
  function specialText_getCharWidth(charWidth,charNum)
  {
   return charNum * charWidth;
  }
  //得到某年某月的最大天数
  function specialText_getMonthDates(strYear,strMonth)
  {
   var intMonth = parseInt(strMonth,10);
   if(intMonth == 1 || intMonth == 3 || intMonth == 5 || intMonth == 7
   || intMonth == 8 || intMonth == 10 || intMonth == 12)
   return 31;
   //处理30天的月份
   else if(intMonth == 4 || intMonth == 6 || intMonth == 9 || intMonth == 11)
   return 30;
   //处理2月份
   else
   {
   //闰年
   if(specialText_isLeapYear(strYear))
   return 29;
   //平年
   else
   return 28;
   }
  }
  //判断是否是闰年
  function specialText_isLeapYear(strYear)
  {
   var intYear = parseInt(strYear,10);
   if((intYear % 4 == 0 && intYear % 100 != 0) ||
   (intYear % 100 == 0 && intYear % 400 == 0))
   return true;
   else
   return false;
  }
  /**//*----------------------------可以放到外部JS中 DateInputControl.js--------------------*/
  function init()
  {
   regDateControl('date1');
  }
  </SCRIPT>
  <body onload='init()'>
  <INPUT TYPE='text' NAME='date1'>
  </body>

(0)

相关推荐

  • 常用限制input的方法的js代码

    1.取消按钮按下时的虚线框,在input里添加属性值 hideFocus 或者 HideFocus=true 2.只读文本框内容,在input里添加属性值 readonly 3.防止退后清空的TEXT文档(可把style内容做做为类引用) 4.ENTER键可以让光标移到下一个输入框 5.只能为中文(有闪动) 6.只能为数字(有闪动) 7.只能为数字(无闪动) 57)) event.returnValue=false" /> 8.只能输入英文和数字(有闪动) 9.屏蔽输入法 10. 只能输入

  • javascript 限制输入和粘贴(IE和火狐3.x下测试通过)

    function upLoadKey(e){ ((document.all) ? true:false) == true ? (window.event.returnValue = false): e.preventDefault(); } [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行] 但是这段代码在 火狐2.x的下面,还是无法对onpaste()这个函数的支持,好消息是火狐的3.x版本支持了一个函数

  • 限制字符输入数功能(jquery版和原生JS版)

    已知BUG: Ubuntu系统下, onkeyup事件失效,详见: Ubuntu系统下onkeyup/onkeydown对中文输入失效bug. 查看演示: 点此查看DEMO 核心代码: 复制代码 代码如下: //原生JavaScript版本 window.onload=function(){ var js=document.getElementById('js');//获取文本域 var info=document.getElementsByTagName('p')[0];//获取要插入提示信息

  • javascript 限制输入和粘贴(IE,firefox测试通过)

    复制代码 代码如下: window["MzBrowser"] ={}; (function() { if(MzBrowser.platform) return; var ua = window.navigator.userAgent; MzBrowser.platform = window.navigator.platform; MzBrowser.firefox = ua.indexOf("Firefox") > 0; MzBrowser.opera = t

  • js数字输入框(包括最大值最小值限制和四舍五入)

    由于原文已经介绍的很好了,现在只是一些翻译和小小的补充. 例子 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <

  • javascript 函数限制调用代码

    函数: 复制代码 代码如下: function throttle(fn,ms) { var last = (new Date()).getTime(); return (function() { var now = (new Date()).getTime(); if (now - last > ms) { last = now; fn.apply(this, arguments); } }); } 参数 fn : 传入的函数/方法 参数 ms:每次函数调用时的间隔(毫秒为单位),如输入2000

  • javascript 限制输入脚本大全

    1.只能输入汉字的 <input onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\u4E00-\u9FA5]/g,''))"> 2.只能输入数字的: <input onkeyup="value=value.re

  • 基于JavaScript表单脚本(详解)

    什么是表单? 一个表单有三个基本组成部分: 表单标签:这里面包含了处理表单数据所用CGI程序的URL以及数据提交到服务器的方法. 表单域:包含了文本框.密码框.隐藏域.多行文本框.复选框.单选框.下拉选择框和文件上传框等. 表单按钮:包括提交按钮.复位按钮和一般按钮:用于将数据传送到服务器上的CGI脚本或者取消输入,还可以用表单按钮来控制其他定义了处理脚本的处理工作. JavaScript与表单间的关系:JS最初的应用就是用于分担服务器处理表单的责任,打破依赖服务器的局面,尽管目前web和jav

  • JavaScript常用判断写法大全(推荐)

    js验证表单大全,用JS控制表单提交,具体内容如下所示: 1. 长度限制 <script> function test() { if(document.a.b.value.length>50) { alert("不能超过50个字符!"); document.a.b.focus(); return false; } } </script> <form name=a onsubmit="return test()"> <t

  • JavaScript 自动完成脚本整理(33个)

    如果你也正准备在这方面提升自己网站的用户体验,下面为你准备了33个JavaScript自动完成脚本,当然还包括用Jquery实现的.1. Proto!TextboxList (演示地址)=700) window.open('/upload/20091020155954866.jpg');" src="http://files.jb51.net/upload/20091020155954866.jpg" onload="if(this.offsetWidth>'

  • 果断收藏9个Javascript代码高亮脚本

    代码高亮很有用,特别是在需要在网站或者blog中显示自己编写的代码的时候,或者给其他人查看或调试语法错误的时候.我们可以将代码高亮,以便阅读者可以十分方便的读取代码块,增加用户阅读代码的良好体验. 目前,有很多免费而且有用的代码高亮脚本.这些脚本大多是由Javascript语言编写,也有些使用其它语言(比如java.Phyton或Ruby)等写的. 下面来推荐最受欢迎.最实用的9个Javascript代码高亮脚本. 1.SyntaxHighlighter 我相信这是最普遍代码高亮代码.它支持多种

  • 跟我学习javascript的异步脚本加载

    先来看这行代码: <script src = "allMyClientSideCode.js"></script> 这有点儿--不怎么样."这该放在哪儿?"开发人员会奇怪,"靠上点,放到<head>标签里?还是靠下点,放到<body>标签里?"这两种做法都会让富脚本站点的下场很凄惨.<head>标签里的大脚本会滞压所有页面渲染工作,使得用户在脚本加载完毕之前一直处于"白屏死机&

  • JavaScript判断输入是否为数字类型的方法总结

    JavaScript判断输入是否为数字类型的方法总结 前言 很多时候需要判断一个输入是否位数字,下面简单列举集中方法. 第一种方法 isNaN isNaN 返回一个 Boolean 值,指明提供的值是否是保留值 NaN (不是数字). NaN 即 Not a Number isNaN(numValue) 但是如果numValue果是一个空串或是一个空格,而isNaN是做为数字0进行处理的,而parseInt与parseFloat是返回一个错误消息,这个isNaN检查不严密而导致的. 第二种方法

  • JavaScript方法和技巧大全

    这篇介绍JavaScript方面的日志,我在是Clang上看到的.作者介绍挺全面的,所以转载过来让感兴趣的朋友看一下.呵呵--- 有些时候你精通一门语言,但是会发现你其实整天在和其它语言打交道,也许你以为这些微不足道,不至于影响你的开发进度,但恰恰是这些你不重视的东西会浪费你很多时间,我一直以为我早在几年前就已经精通JavaScript了,直到目前,我才越来越觉得JavaScript远比我想象的复杂和强大,我开始崇拜它,就像崇拜所有OOP语言一样- 趁着节日的空隙,把有关JavaScript的方

  • JavaScript常用工具函数大全

    本文实例总结了JavaScript常用工具函数.分享给大家供大家参考,具体如下: 为元素添加on方法 Element.prototype.on = Element.prototype.addEventListener; NodeList.prototype.on = function (event, fn) {. []['forEach'].call(this, function (el) { el.on(event, fn); }); return this; }; 为元素添加trigger方

  • 前端面试JavaScript高频手写大全

    目录 1. 手写instanceof 2. 实现数组的map方法 3. reduce实现数组的map方法 4. 手写数组的reduce方法 5. 数组扁平化 5. 1 es6提供的新方法 flat(depth) 5.2 利用cancat 6. 函数柯里化 7. 浅拷贝和深拷贝的实现 7.1浅拷贝和深拷贝的区别 8. 手写call, apply, bind 8.1 手写call 8.2 手写apply(arguments[this, [参数1,参数2.....] ]) 8.3 手写bind 9.

随机推荐