正则:文本框只能输入数字,最多4位小数

正则:文本框只能输入数字,最多4位小数


<script type="text/javascript">
function _v(str){
	var v4 = /^[+-]?\d+\.\d{0,4}$/i;
	return v4.test(str);
}
document.writeln("1.1111:"+_v("1.1111"));//true
document.writeln("<br />");
document.writeln("1.111:"+_v("1.111"));//true
document.writeln("<br />");
document.writeln("1.11:"+_v("1.11"));//true
document.writeln("<br />");
document.writeln("1.1:"+_v("1.1"));//true
document.writeln("<br />");
document.writeln("11.1:"+_v("11.1"));//true
document.writeln("<br />");
document.writeln("111.1:"+_v("111.1"));//true
document.writeln("<br />");
document.writeln("1111.1:"+_v("1111.1"));//true
document.writeln("<br />");
document.writeln("1.11111:"+_v("1.11111"));//false
document.writeln("<br />");
document.writeln("58.62596:"+_v("58.62596"));//false
document.writeln("<br />");
document.writeln("58.6260:"+_v("58.6260"));//true
document.writeln("<br />");
document.writeln("1.1.11.:"+_v("1.1.11."));//false
</script>


1.1111:true 1.111:true 1.11:true 1.1:true 11.1:true 111.1:true 1111.1:true 1.11111:false 58.62596:false 58.6260:true 1.1.11.:false

相关文章

正则替换html代码中img标签的src值在开发富文本信息在移动端...
正则表达式
AWK是一种处理文本文件的语言,是一个强大的文件分析工具。它...
正则表达式是特殊的字符序列,利用事先定义好的特定字符以及...
Python界一名小学生,热心分享编程学习。
收集整理每周优质开发者内容,包括、、等方面。每周五定期发...