正则表达式验证 只能数字或小数 只能有一个小数点并且第一位不能为小数点
<inputid="txtMeasureRatio"type="text"runat="server"onkeyup="value=value.replace(/[^\d...
<input id="txtMeasureRatio" type="text" runat="server" onkeyup="value=value.replace(/[^\d+\.]/g,'')" runat="server" style="width:300px" />
这个不完善 可以输入几个小数点,怎么完善下
这种格式的 展开
这个不完善 可以输入几个小数点,怎么完善下
这种格式的 展开
展开全部
举个例子:
<html>
<head>
<title>无标题页</title>
<script language="javascript" type="text/javascript">
function NumberCheck(num)
{
var re=/^\d*\.{0,1}\d{0,1}$/;
return re.exec(num) != null;
}
function check()
{
if (!NumberCheck(document.getElementById("a").value))
{
alert("格式不对");
}else{
alert("格式正确");
}
}
</script>
</head>
<body>
<form method="post" action="">
<input type="text" id="a" />
<input type="button" onclick="check()" value="check" />
</form>
</body>
</html>
你看看这个,这个是在html页面中的
<html>
<head>
<title>无标题页</title>
<script language="javascript" type="text/javascript">
function NumberCheck(num)
{
var re=/^\d*\.{0,1}\d{0,1}$/;
return re.exec(num) != null;
}
function check()
{
if (!NumberCheck(document.getElementById("a").value))
{
alert("格式不对");
}else{
alert("格式正确");
}
}
</script>
</head>
<body>
<form method="post" action="">
<input type="text" id="a" />
<input type="button" onclick="check()" value="check" />
</form>
</body>
</html>
你看看这个,这个是在html页面中的
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询