我有一个文本框,需要限制用户输入十进制数字以外的数字(最多三位数字,然后是句点,然后最多两位数字)。有人可以建议我为 jQuery 中的文本框设置 Onkeypress 事件吗?
问问题
744 次
1 回答
0
您可以使用此代码
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");
}
}
我希望这段代码对你有用。
于 2013-04-29T13:22:12.853 回答