我有一个文本框,需要限制用户输入十进制数以外的数字(最多三位数,然后是句号,然后最多两位数)。有人可以建议我Onkeypress事件的文本框在jQuery对于这个要求
您可以使用以下代码
function checkValue()
{
var num = $("#txtBox").val().split(".");
if(num[0].length<=3)
{
if(num[1].length<=2)
{
return true;
}
else
{
alert("Decimal part can not be greater than 2");
}
}
else
{
alert("Number can not be greater than 3 digits");
}
}