在我的腳本中,我有一張表,其中我得到了每列的總值。 我想實現的是用逗號顯示數字。用逗號格式化數字,得到總價值
這裏是我迄今爲止
HTML
<table>
<thead>
<tr>
<th>COL1</th>
<th>COL2</th>
<th>COL3</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" class="num1" name="num1" value="1200.00" /></td>
<td><input type="text" class="num2" name="num2" value="500.00" /></td>
<td><input type="text" class="num3" name="num3" value="100.00" /></td>
</tr>
<tr>
<td><input type="text" class="num1" name="num1" value="900.00" /></td>
<td><input type="text" class="num2" name="num2" value="1500.00" /></td>
<td><input type="text" class="num3" name="num3" value="10.00" /></td>
</tr>
<tr>
<td><input type="text" class="num1" name="num1" value="200.00" /></td>
<td><input type="text" class="num2" name="num2" value="500.00" /></td>
<td><input type="text" class="num3" name="num3" value="300.00" /></td>
</tr>
<tr>
<td><input type="text" class="tot1" name="tot1" value="" /></td>
<td><input type="text" class="tot2" name="tot2" value="" /></td>
<td><input type="text" class="tot3" name="tot3" value="" /></td>
</tr>
<tr>
</tr>
</tbody>
</table>
的JavaScript
$(document).ready(function() {
$(".num1, .num2, .num3").each(function() {
$(this).keyup(function() {
calculateSum();
});
});
});
function calculateSum() {
var tot1 = 0;
var tot2 = 0;
var tot3 = 0;
// Paying
$(".num1").each(function() {
if (!isNaN(this.value) && this.value.length != 0) {
tot1 += parseFloat(this.value);
}
});
$("input[name='tot1']").val(tot1.toFixed(2));
$(".num2").each(function() {
if (!isNaN(this.value) && this.value.length != 0) {
tot2+= parseFloat(this.value);
}
});
$("input[name='tot2']").val(tot2.toFixed(2));
$(".num3").each(function() {
if (!isNaN(this.value) && this.value.length != 0) {
tot3+= parseFloat(this.value);
}
});
$("input[name='tot3']").val(tot3.toFixed(2));
}
window.onload = calculateSum;
這裏是我的演示小提琴。
任何幫助,將不勝感激!謝謝。
你是什麼意思你想用逗號顯示數字? –
是不是已經添加了逗號?回顧演示 –
我認爲它只能自動添加到jsfiddle中。 –