我对Javascript很新,并且使用DOM。我正在尝试将用户的输入值添加到总计。每次他们为信用卡或借记卡添加一个值时,它都会将其添加到总额中。我所做的每一次尝试都会导致NaN,未定义或其他错误。我是否需要for循环或者有更简单的方法吗?
以下是完整代码:JSFiddle
我的Javascript代码段(添加总计):
if (document.getElementsByTagName('select')[0].selectedIndex == 1) {
transactions.appendChild(debit);
text = document.createTextNode("debit");
td2.appendChild(text);
var money = document.querySelector('input[type="number"]').value;
money = parseFloat(money).toFixed(2);
var total = 0;
for (var i = 0; i < money.length; i++) {
if (parseInt(money[i].value))
total += parseInt(money[i].value);
}
document.querySelector('.right > .total.debits').innerHTML = total;
evt.target.reset();
}
我的HTML:
<body>
<section class="wrapper">
<h1>Transaction Tracker</h1>
<form class="transaction-frm">
<fieldset>
<legend>Add Transaction</legend>
<div class="frm-group">
<input class="frm-control" type="text" name="description" size="30" placeholder="description" />
</div>
<div class="frm-group">
<select class="frm-control" name="type">
<option value="">type</option>
<option value="debit">debit</option>
<option value="credit">credit</option>
</select>
</div>
<div class="frm-group">
<i class="edit fa fa-dollar"></i>
<input class="frm-control" type="number" name="currency" min="0" max="9999" step="0.01" size="4" placeholder="0.00" />
</div>
<div class="frm-group">
<input class="frm-control" type="submit" value="add" />
</div>
<div class="error"></div>
</fieldset>
</form>
<h2>Transactions</h2>
<table class="transactions">
<thead>
<tr>
<td colspan="4" class="right">
Total debits: <span class="total debits">$0.00</span>
Total credits: <span class="total credits">$0.00</span>
</td>
</tr>
<tr>
<th>Description</th>
<th>Type</th>
<th class="amount">Amount</th>
<th class="tools">Tools</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</section>
<script src="js/main.js"></script>
答案 0 :(得分:2)
如果用这个替换当前的JSFiddle脚本,这应该有效。 它获取跨度中的当前值并删除$然后添加到它。 然后为了使它看起来不错,它使它在小数点后固定长度并且在前面加上一个美元符号。最后将跨度值更新为新总量。 如果您计划能够删除节点,则需要进行修改。 如果您确实实现了删除,则会读取节点类型和值以及减号而不是添加。
document.querySelector('form').addEventListener('submit', function(evt) {
var transactions = document.querySelector('tbody');
var debit, credit, moneyText, descriptionText,
error, td, td2, td3, td4, td5, td6, td7, td8, i, i2;
description = document.querySelector('input[type="text"]').value;
money = document.querySelector('input[type="number"]').value;
money = parseFloat(money).toFixed(2);
if (document.getElementsByTagName('select')[0].selectedIndex == 0) {
alert("Please select a payment option");
document.getElementsByTagName('select')[0].focus();
}
if (document.querySelector('input[type="text"]').value == "") {
alert("Please enter a description");
document.querySelector('input[type="text"]').focus();
}
if (document.querySelector('input[type="number"]').value < 0 || document.querySelector('input[type="number"]').value == "") {
alert("Please enter a number over 0");
document.querySelector('input[type="number"]').focus();
}
debit = document.createElement('tr');
credit = document.createElement('tr');
debitDescriptionText = document.createTextNode(description);
debitMoneyText = document.createTextNode(money);
creditDescriptionText = document.createTextNode(description);
creditMoneyText = document.createTextNode(money);
td = document.createElement('td');
td2 = document.createElement('td');
td3 = document.createElement('td');
td4 = document.createElement('td');
td5 = document.createElement('td');
td6 = document.createElement('td');
td7 = document.createElement('td');
td8 = document.createElement('td');
i = document.createElement('i');
i2 = document.createElement('i');
debit.setAttribute('class', 'debit');
credit.setAttribute('class', 'credit');
td3.setAttribute('class', 'amount');
td4.setAttribute('class', 'tools');
td7.setAttribute('class', 'amount');
td8.setAttribute('class', 'tools');
i.setAttribute('class', 'delete fa fa-trash-o');
i2.setAttribute('class', 'delete fa fa-trash-o');
sign = document.createTextNode("$");
td3.appendChild(sign);
sign = document.createTextNode("$");
td7.appendChild(sign);
debit.appendChild(td);
debit.appendChild(td2);
debit.appendChild(td3);
debit.appendChild(td4);
td.appendChild(debitDescriptionText);
td3.appendChild(debitMoneyText);
td5.appendChild(creditDescriptionText);
td7.appendChild(creditMoneyText);
td4.appendChild(i);
credit.appendChild(td5);
credit.appendChild(td6);
credit.appendChild(td7);
credit.appendChild(td8);
td8.appendChild(i2);
if (document.getElementsByTagName('select')[0].selectedIndex == 1) {
transactions.appendChild(debit);
text = document.createTextNode("debit");
td2.appendChild(text);
var money = document.querySelector('input[type="number"]').value;
document.querySelector('.right > .total.debits').innerHTML ="$"+(parseInt(document.querySelector('.right > .total.debits').innerText.replace("$",""))+parseFloat(money)).toFixed(2);
evt.target.reset();
}
if (document.getElementsByTagName('select')[0].selectedIndex == 2) {
transactions.appendChild(credit);
text = document.createTextNode("credit");
td6.appendChild(text);
var money = document.querySelector('input[type="number"]').value;
document.querySelector('.right > .total.credits').innerHTML ="$"+(parseInt(document.querySelector('.right > .total.credits').innerText.replace("$",""))+parseFloat(money)).toFixed(2);
evt.target.reset();
}
evt.preventDefault();
});
document.querySelector('.transactions').addEventListener('click', function(evt) {
// check for click on an arrow
var target = evt.target.parentNode;
var trash = target.parentNode;
if (evt.target.classList.contains('delete')) {
trash.remove(target);
}
});
答案 1 :(得分:1)
您需要在事件之外声明总变量。
`var debitTotal = 0.0, creditTotal = 0.0;`
在尝试获取总数时,你也转换了太多次,你可以添加花车。从.toFixed(2)
移除money = parseFloat(money).toFixed(2)
。 toFixed(2)
将您的值转换为字符串。同时删除for loop
。您所需要的只是:
var money = document.querySelector('input[type="number"]').value;
money = parseFloat(money);
debitTotal += money;
得到你的总数。然后显示您可以添加.toFixed(2);
document.querySelector('.right > .total.debits').innerHTML = '$' + debitTotal.toFixed(2);
我为积分做了基本相同的事情。
以下是更新后的jsfiddle。
答案 2 :(得分:0)
我查看了您所做的小提琴,只要表格字段填写正确,交易列表似乎不会抛出任何错误。
您添加到字段的验证检查在解析为无效后需要返回语句。
问题是如果没有输入数据,则该值将被解析为NaN,并且即使在显示警告声明它无效之后,您也要添加一行。 (因为即使输入值无效,函数也不会退出)
答案 3 :(得分:0)
money = parseFloat(money).toFixed(2);
类型的钱 - &gt;小数点后2个字符的数字
var total = 0;
for (var i = 0; i < money.length; i++) {
钱变成字符串,你检查每个字符
if (parseInt(money[i].value))
money [i](字符串变量).value未定义,所以 parseInt(undefined)= NaN -means不是数字
total += parseInt(money[i].value);
}
所以你不需要循环,只需
total += parseInt(money)