本文主要是介绍向上取小数两位且仅限数字及小数点,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
function getPrice(sender){
value = $(sender).val();
value = Math.ceil(value*100)/100;
if(!isNaN(value)){
$(sender).val(value);
}else{
$(sender).val("");
alert("请输入正确的数字!");
}
}
<input type=text name="price" title="price" value="<%=Str4Html(sPrice)%>" class=gridtextbox
οnkeypress="var k=event.keyCode; return k>=48&&k<=57||k==46"
οnpaste="return !clipboardData.getData('text').match(/\D/)"
οndragenter="return false" style="ime-mode:Disabled"
οnchange="getPrice(this)">
这篇关于向上取小数两位且仅限数字及小数点的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!