<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Round to 2 Decimal Places</title>
<script type="text/javascript"
src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js">
</script>
<script type="text/javascript">
$(function() {
$('input#txtNum').blur(function() {
var amt = parseFloat(this.value);
//$(this).val('$' + amt.toFixed(2));
$(this).val((Math.round(amt*100))/100).toFixed(2);
});
});
</script>
</head>
<body>
Type a decimal number in the TextBox and hit Tab
<br />
<input id="txtNum" type="text" />
</body>
</html>
,當我進入價值100.2569.The結果表明:100.26,但是當我進入56.999其表現出5-7,而不是57.00或者如果我不帶小數點的表現沒有小數無需兩臺給予價值在十進制後附加兩個零。的Javascript四捨五入至小數點後兩位
由於其工作現在 – shiva
這是使用jQuery做。這可以只使用Javascript來完成嗎? – shiva
@shiva jQuery與香草JavaScript並不太相似。而不是'$(this).val()',你可以簡單地把結果賦給'this.value'。你需要什麼樣的瀏覽器支持?雖然更現代的瀏覽器支持'addEventListener',但當它存在時,您必須回退到'attachEvent',並且還可以返回到兩者都不存在時直接修改元素成員。 – Sampson