我是
靠谱客的博主
漂亮皮皮虾,最近开发中收集的这篇文章主要介绍
正则限制 input 输入框只能输入整数、小数,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
第一: 限制只能是整数
- <input type = "text" name= "number" id = 'number' οnkeyup= "if(! /^d+$/.test(this.value)){alert('只能整数');this.value='';}" />
如果不是整数就直接alert
第二: 限制是两位的小数
- <input type = "text" name= "price" id = 'price' οnkeyup= "if( ! /^d*(?:.d{0,2})?$/.test(this.value)){alert('只能输入数字,小数点后只能保留两位');this.value='';}" />
原理:
通过 正则表达式判断,不满足 执行alert。
第一个正则表达式是 /^d+$/ 表示可以是一个或者多个数字
第二个正则表达式是
表示必须是数字开头,数字结尾。
这里重点是要数字结尾, 在计算机中通常小数 1. , 2. 这种写法, 就是可是小数点结尾的, 是正确的。这里强制让数字结尾。
test()
只要找到满足的部分就返回真。
意思是是
- /d/. test ( 'a' )
- /d/. test ( 'a' )
- /d/. test ( 'a' )
所以要保证谁开头谁结尾。 开头用 $, 结尾用 ^
下面给大家介绍js正则限制input框输入的常用代码
1.只能输入数字和英文的:
- <input οnkeyup="value=value.replace(/[W]/g,'') "
- onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^d]/g,''))"
- ID="Text1" NAME="Text1">
2.只能输入数字的:
- <input οnkeyup="value=value.replace(/[^d]/g,'') "
- onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^d]/g,''))"
- ID="Text2" NAME="Text2">
3.只能输入全角的:
- <input οnkeyup="value=value.replace(/[^uFF00-uFFFF]/g,'')"
- onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^uFF00-uFFFF]/g,''))"
- ID="Text3" NAME="Text3">
4.只能输入汉字的:
- <input οnkeyup="value=value.replace(/[^u4E00-u9FA5]/g,'')"
- onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^u4E00-u9FA5]/g,''))"
- ID="Text4" NAME="Text4">
5.邮件地址验证:
- var regu =
- "^(([0-9a-zA-Z]+)|([0-9a-zA-Z]+[_.0-9a-zA-Z-]*[0-9a-zA-Z]+))@([a-zA-Z0-9-]+[.])+([a-zA-Z]{2}|net|NET|com|COM|gov|GOV|mil|MIL|org|ORG|edu|EDU|int|INT)$"
- var re = new RegExp(regu);
- if (s.search(re) != -1) {
- return true;
- } else {
- window.alert ("请输入有效合法的E-mail地址 !")
- return false;
- }
6.身份证:
- "^\d{17}(\d|x)$"
- 7.17种正则表达式
- "^\d+$"
- "^[0-9]*[1-9][0-9]*$"
- "^((-\d+)|(0+))$"
- "^-[0-9]*[1-9][0-9]*$"
- "^-?\d+$"
- "^\d+(\.\d+)?$"
- "^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$"
- "^((-\d+(\.\d+)?)|(0+(\.0+)?))$"
- "^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$"
- "^(-?\d+)(\.\d+)?$"
- "^[A-Za-z]+$"
- "^[A-Z]+$"
- "^[a-z]+$"
- "^[A-Za-z0-9]+$"
- "^\w+$"
- "^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$"
- "^[a-zA-z]+://(\w+(-\w+)*)(\.(\w+(-\w+)*))*(\?\S*)?$" //url
1.取消按钮按下时的虚线框
在input里添加属性值 hideFocus 或者 HideFocus=true
2.只读文本框内容
在input里添加属性值 readonly
3.防止退后清空的TEXT文档(可把style内容做做为类引用)
- <INPUT style=behavior:url(#default#savehistory); type=text
- d=oPersistInput>
4.ENTER键可以让光标移到下一个输入框
- <input οnkeydοwn="if(event.keyCode==13)event.keyCode=9" >
5.只能为中文(有闪动)
- <input οnkeyup="value="/value.replace(/[" -~]/g,'')"
- nkeydown="if(event.keyCode==13)event.keyCode=9">
6.只能为数字(有闪动)
- <input οnkeyup="value="/value.replace(/["^d]/g,'')
- nbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^d]/g,''))">
7.只能为数字(无闪动)
- <input ime-mode:disabled"
- οnkeydοwn="if(event.keyCode==13)event.keyCode=9" onKeypress="if
- ((event.keyCode<48 || event.keyCode>57)) event.returnValue=false">
8.只能输入英文和数字(有闪动)
- <input οnkeyup="value="/value.replace(/[W]/g,"'')"
- onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^d]/g,''))">
9.屏蔽输入法
- <input type="text" name="url" ime-mode:disabled"
- keydown="if(event.keyCode==13)event.keyCode=9">
10. 只能输入 数字,小数点,减号(-) 字符(无闪动)
- <input onKeyPress="if (event.keyCode!=46 && event.keyCode!=45 &&
- event.keyCode<48 || event.keyCode>57)) event.returnValue=false">
11. 只能输入两位小数,三位小数(有闪动)
- <input maxlength=9
- οnkeyup="if(value.match(/^d{3}$/))value="/value.replace(value,parseInt(value/10))"
- ;value="/value.replace(/.d*./g,'."')" onKeyPress="if((event.keyCode<48
- || event.keyCode>57) && event.keyCode!=46 && event.keyCode!=45 ||
- value.match(/^d{3}$/) || /.d{3}$/.test(value))
- {event.returnValue=false}" id=text_kfxe name=text_kfxe>
- <p style="">密码的强度必须是包含大小写字母和数字的组合,不能使用特殊字符,长度在8-10之间。
- </p><div class="jb51code" style=""><pre class="js" name="code">^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$ </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>2. 校验中文</strong></span><br></p><p style="">字符串仅能是中文。<br></p><div class="jb51code" style=""><pre class="js" name="code">^[\u4e00-\u9fa5]{0,}$ </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong> 3. 由数字、26个英文字母或下划线组成的字符串</strong></span><br></p><div class="jb51code" style=""><pre class="js" name="code">^\w+$ </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>4. 校验E-Mail 地址<br></strong></span></p><p style="">同密码一样,下面是E-mail地址合规性的正则检查语句。</p><div class="jb51code" style=""><pre class="js" name="code">[\w!#$%&'*+/=?^_`{|}~-]+(?:\.[\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\w](?:[\w-]*[\w])?\.)+[\w](?:[\w-]*[\w])? </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>5. 校验身份证号码</strong></span><br></p><p style="">下面是身份证号码的正则校验。15 或 18位。<br></p><p style=""><strong>15位:<br></strong></p><div class="jb51code" style=""><pre class="js" name="code"> ^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$ </pre></div><p style=""><strong> 18位:</strong></p><div class="jb51code" style=""><pre class="js" name="code">^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$ </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>6. 校验日期</strong></span><br></p><p style="">“yyyy-mm-dd“ 格式的日期校验,已考虑平闰年。<br></p><div class="jb51code" style=""><pre class="js" name="code">^(?:(?!0000)[0-9]{4}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1[0-9]|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:0[48]|[2468][048]|[13579][26])00)-02-29)$</pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>7. 校验金额</strong></span><br></p><p style="">金额校验,精确到2位小数。<br></p><div class="jb51code" style=""><pre class="js" name="code">^[0-9]+(.[0-9]{2})?$ </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>8. 校验手机号</strong></span><br></p><p style="">下面是国内 13、15、18开头的手机号正则表达式。</p><div class="jb51code" style=""><pre class="js" name="code">^(13[0-9]|14[5|7]|15[0|1|2|3|5|6|7|8|9]|18[0|1|2|3|5|6|7|8|9])\d{8}$ </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>9. 判断IE的版本</strong></span><br></p><p style="">IE目前还没被完全取代,很多页面还是需要做版本兼容,下面是IE版本检查的表达式。<br></p><div class="jb51code" style=""><pre class="js" name="code">^.*MSIE [5-8](?:\.[0-9]+)?(?!.*Trident\/[5-9]\.0).*$ </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>10. 校验IP-v4地址<br></strong></span></p><p style="">IP4 正则语句。<br></p><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>11. 校验IP-v6地址</strong></span><br></p><p style="">IP6 正则语句。<br></p><div class="jb51code" style=""><pre class="js" name="code">(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])) </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>12. 检查URL的前缀</strong></span><br></p><p style="">应用开发中很多时候需要区分请求是HTTPS还是HTTP,通过下面的表达式可以取出一个url的前缀然后再逻辑判断。<br></p><div class="jb51code" style=""><pre class="js" name="code">if (!s.match(/^[a-zA-Z]+:\/\
- {
- s = 'http://' + s;
- }</pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>13. 提取URL链接<br></strong></span></p><p style="">下面的这个表达式可以筛选出一段文本中的URL。</p><div class="jb51code" style=""><pre class="js" name="code">^(f|ht){1}(tp|tps):\/\/([\w-]+\.)+[\w-]+(\/[\w- ./?%&=]*)? </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>14. 文件路径及扩展名校验</strong></span><br></p><p style="">验证文件路径和扩展名</p><div class="jb51code" style=""><pre class="js" name="code">^([a-zA-Z]\:|\\)\\([^\\]+\\)*[^\/:*?"<>|]+\.txt(l)?$ </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>15. 提取Color Hex Codes</strong></span><br></p><p style="">有时需要抽取网页中的颜色代码,可以使用下面的表达式。</p><div class="jb51code" style=""><pre class="js" name="code">\#([a-fA-F]|[0-9]){3,6} </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>16. 提取网页图片</strong></span><br></p><p style="">假若你想提取网页中所有图片信息,可以利用下面的表达式。<br></p><div class="jb51code" style=""><pre class="js" name="code">\< *[img][^\>]*[src] *= *[\"\']{0,1}([^\"\'\ >]*) </pre></div><p style=""><span style="color:#00ff; float:right; padding-left:20px; padding-right:20px"><strong>17. 提取页面超链接<br></strong></span></p><p style="">提取html中的超链接。</p><div class="jb51code" style=""><pre class="js" name="code">(<;a\s*(?!.*\brel=)[^>;]*)(href="https?:
关键是:οnkeyup="this.value=this.value.replace(/D/g,'')"
<input type="text" id="limitAmount" name="limitAmount" value="" οnkeyup="this.value=this.value.replace(/D/g,'')"/>
只能输入整数和小数
onpropertychange="if(isNaN(value)) value=value.substring(0,value.length-1);"
//页面上 输入整数和小数
οnkeyup="this.value=this.value.replace(/[^d.]/g,'')"
最后
以上就是漂亮皮皮虾为你收集整理的正则限制 input 输入框只能输入整数、小数的全部内容,希望文章能够帮你解决正则限制 input 输入框只能输入整数、小数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复