在JS中选中复选框时显示总价格

时间:2015-03-03 06:31:33

标签: javascript checkbox

我正在进行检查表格分配。所以,我有3个价格的产品,类型是复选框。总字段将仅显示已检查产品的总成本。但是,当我点击复选框时,总字段不显示任何内容。我错过了什么吗?任何的想法?谢谢!我的HTML和JS:

    <form action="" id="theForm">
        <fieldset>
            <legend>
                Products
            </legend>
            <label>
                <input name="product" value="12.95" type="checkbox" id="p1" onclick="total()"/>
                Candy $12.95
            </label>
            <label>
                <input name="product" value="5.99" type="checkbox" id="p2" onclick="total()"/>
                Burger $5.99
            </label>
            <label>
                <input name="product" value="1.99" type="checkbox" id="p3" onclick="total()"/>
                Coke $1.99
            </label>
            <label>
                Total 
                <input value="$0.00" readonly="readonly" type="text" id="total"/>
            </label>
        </fieldset>
        <input value="Submit" type="submit"/>
        <input value="Reset" type="reset"/>
    </form>

JS

function total() {
        var input = document.getElementById("form");
        var total = 0;
        for (var i = 0; i < input.length; i++) {
                if (input[i].checked) {
                        total += parseFloat(input[i].value);
                }
        }
        document.getElementById("total").value = "$" + total;
}

4 个答案:

答案 0 :(得分:3)

三个问题

1:使用document.getElementsByName("product");
2:重命名该功能。似乎使用total作为字段的ID会干扰同名的功能 3:结果圆整

&#13;
&#13;
function totalIt() {
  var input = document.getElementsByName("product");
  var total = 0;
  for (var i = 0; i < input.length; i++) {
    if (input[i].checked) {
      total += parseFloat(input[i].value);
    }
  }
  document.getElementById("total").value = "$" + total.toFixed(2);
}
&#13;
 <form action="" id="theForm">
        <fieldset>
            <legend>
                Products
            </legend>
            <label>
                <input name="product" value="12.95" type="checkbox" id="p1" onclick="totalIt()"/>
                Candy $12.95
            </label>
            <label>
                <input name="product" value="5.99" type="checkbox" id="p2" onclick="totalIt()"/>
                Burger $5.99
            </label>
            <label>
                <input name="product" value="1.99" type="checkbox" id="p3" onclick="totalIt()"/>
                Coke $1.99
            </label>
            <label>
                Total 
                <input value="$0.00" readonly="readonly" type="text" id="total"/>
            </label>
        </fieldset>
        <input value="Submit" type="submit"/>
        <input value="Reset" type="reset"/>
    </form>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

这一行...

var input = document.getElementById("form");

只返回id为form的单个元素 - 并且在您的示例中甚至不存在这样的元素。您正在寻找的是......

var inputs = document.getElementsByName("product");

答案 2 :(得分:0)

&#13;
&#13;
window.calculate = function(){
    var total = 0;
    var form = document.getElementById("theForm");
    var inputs = form.getElementsByTagName("input");
    
    for(var i = 0; i < inputs.length; i++){
        if(inputs[i].getAttribute("name") == "product" && inputs[i].checked)
            total += parseFloat(inputs[i].value);
    }
    alert(total);
}
&#13;
<form action="" id="theForm">
        <fieldset>
            <legend>
                Products
            </legend>
            <label>
                <input name="product" value="12.95" type="checkbox" id="p1" onclick="calculate()"/>
                Candy $12.95
            </label>
            <label>
                <input name="product" value="5.99" type="checkbox" id="p2" onclick="calculate()"/>
                Burger $5.99
            </label>
            <label>
                <input name="product" value="1.99" type="checkbox" id="p3" onclick="calculate()"/>
                Coke $1.99
            </label>
            <label>
                Total 
                <input value="$0.00" readonly="readonly" type="text" id="total"/>
            </label>
        </fieldset>
        <input value="Submit" type="submit"/>
        <input value="Reset" type="reset"/>
    </form>
&#13;
&#13;
&#13;

答案 3 :(得分:0)

只需创建一个表单变量并添加一个事件侦听器,即可侦听和修改这样的输入文本

function total_price(){
   let input = documnent.getElementsById('theForm'),
    total = 0.00,
    input = documnent.getElementsById('product');
    for (let i = 0; i <input.length; input++){
       if(input[i].checked){
         total += parseFloat(input[i].value)
       }
    }
    document.getElementById('total').value = total.toFixed(2)
}
document.getElementById('theForm').addEventListener('change', total_price)