2013-04-29 56 views

回答

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"); 
} 
} 

我希望這段代碼爲你工作。

相關問題