简体   繁体   English

对输入文本和单选的动态值求和

[英]Sum dynamic values from input text and radio

I'm trying to sum the value of an input text changing dynamically with a radio that also changes dynamically.我正在尝试将动态变化的输入文本的值与也动态变化的收音机相加。 I'm doing something right but also something wrong because it doesn't sum when I want.我在做正确的事情,但也做错了事情,因为它不会在我想要的时候求和。 The sum should show everytime the input text changes and not randomly disappear then you click a radio, just sum them.总和应该在每次输入文本更改时显示,而不是随机消失,然后单击收音机,只需将它们相加即可。

the fiddle http://jsfiddle.net/7tFhx/小提琴http://jsfiddle.net/7tFhx/

and the code和代码

<form id="myForm" accept-charset="UTF-8">
    <button type="button" class="btn-tt btn-primary btn-lg" disabled>1. Elige el color</button></br>
        <label>
            <input class="calc" id="fb1" type="radio" name="fb" value="10">
            <img src="img/01.jpg"/>
        </label>            
        <label>
            <input class="calc" id="fb2" type="radio" name="fb" value="15">
            <img src="img/02.jpg"/>
        </label>
    </br>
    </br>
    <button type="button" class="btn-tt btn-primary btn-lg" disabled>2. Elige las medidas</button></br>
    <div class="row">
        <div class="col-xs-2">
            ancho (cm.)
            <input id="ancho" type="text" class="form-control" placeholder="100">
        </div>
        <div class="col-xs-2">
            alto (cm.)
            <input id="alto" type="text" class="form-control" placeholder="100">
        </div>      
        <div class="col-xs-2">
            cantidad
            <input id="cantidad" type="text" class="form-control" placeholder="1">
        </div>
    </div>
    </br>
    <button type="button" class="btn-tt btn-primary btn-lg" disabled>3. Posición mecanismo</button></br>
        <label>
            <input class="calc" id="fb3" type="radio" name="fb1" value="20">
            <img src="img/01.jpg"/>
        </label>            
        <label>
            <input class="calc" id="fb4" type="radio" name="fb1" value="35">
            <img src="img/02.jpg"/>
        </label>

    <div>
        Total: <span id="price">0</span>€
    </div>
</form>

js: js:

$(function(){    

var mecanismoMedida = ['100','200'];
var mecanismoPrecio = ['50','80'];

$('#ancho').on('input',function(){
var j = 1, i = 0;
value = parseInt(($("#ancho").val() / 8) + 1);

for(i = 0; i < mecanismoMedida.length; i++){
    if($("#ancho").val() >= mecanismoMedida[i] && $("#ancho").val() < 
mecanismoMedida[j]){
        value += mecanismoPrecio[i];
        break;
    } else {
        j++;
    }
}

$("#price").text(this.value + value);
});

$('#myForm input[type="radio"]').on('change', function () {
    var sum = 0;
    $("#myForm").find("input[type='radio']:checked").each(function () {
        sum += parseInt(this.value);
    });
    $("#price").text(sum);
});
});

If it's a simple sum you're after, you can simply run an update code on the keyup and change events of all input elements:如果这是一个简单的求和,您可以简单地在 keyup 上运行更新代码并更改所有输入元素的事件:

$("input").change(function(){update();}).keyup(function(){update();});

To update them, first you need to check and see which one of the two radio buttons are checked and get its value:要更新它们,首先您需要检查并查看两个单选按钮中的哪一个被选中并获取其值:

function update(){

    var p = 0;
    for(var i = 0; i < $(".calc").val(); i++)
    {
        if($($(".calc")[i]).prop("checked") == true)
        {
            p += parseInt($($(".calc")[i]).val());
        }
    }

After that, simply parse the values of the textboxes to integers and add them to the value of the radio button.之后,只需将文本框的值解析为整数并将它们添加到单选按钮的值中。 I created a custom function to do this, because if the boxes are empty, parsing them returns NaN:我创建了一个自定义 function 来执行此操作,因为如果框为空,则解析它们会返回 NaN:

    p = parseInt(p);

    p += parseInt(val2($("#ancho")));
    p += parseInt(val2($("#alto")));
    p += parseInt(val2($("#cantidad")));

    p = parseInt(p);

    $("#price").html(p);
}

function val2(elm){
    if(isNaN(parseInt($(elm).val())))
       return 0;
    else
        return parseInt($(elm).val());
}

JSFiddle JSFiddle

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM