微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Yii2-dynamicforms和javascript

我有在Yii2中工作的wbraganca动态表单,但我需要添加一个函数来乘以2个字段并将值放在第三个中,并在每个新动态表单中执行此操作(假设字段1是价格,字段2是金额和字段3总计).
使用我的代码,我能够做到这一点,但只能在第一个动态表单上.
<?PHP
$script = <<< JS
$('#itemsfactura-{$i}-cantidad').change(function(){
    var cantidad = $(this).val();
    var precio = $('#itemsfactura-{$i}-precio').val();
    $('#itemsfactura-{$i}-total_item').val(cantidad * precio);
});
JS;
$this->registerJs($script);
?>

这是动态表单字段的代码

...
<div class="row">
    <div class="col-sm-4">
        <?= $form->field($modelItemFactura,"[{$i}]precio")->textInput(['maxlength' => true]) ?>
    </div>
    <div class="col-sm-4">
        <?= $form->field($modelItemFactura,"[{$i}]cantidad")->textInput(['maxlength' => true]) ?>
    </div>
    <div class="col-sm-4">
        <?= $form->field($modelItemFactura,"[{$i}]total_item")->textInput(['maxlength' => true]) ?>
    </div>
</div>...
形成
<div class="col-sm-4">
    <?= $form->field($modelItemFactura,"[{$i}]precio")->textInput(['maxlength' => true,'onchange' => 'getProduct($(this))','onkeyup' => 'getProduct($(this))']) ?>
</div>
<div class="col-sm-4">
    <?= $form->field($modelItemFactura,"[{$i}]cantidad")->textInput(['maxlength' => true,'onkeyup' => 'getProduct($(this))']) ?>
</div>

JS

function getProduct(item) {
    var index  = item.attr("id").replace(/[^0-9.]/g,"");
    var total = current = next = 0;

    var id = item.attr("id");
    var myString = id.split("-").pop();

    if(myString == "precio") {
        fetch = index.concat("-cantidad");
    } else {
        fetch = index.concat("-precio");
    }

    temp = $("#itemsfactura-"+fetch+"").val();

    if(!isNaN(temp) && temp.length != 0) {
        next = temp;
    }

    current = item.val();
    if(isNaN(current) || current.length == 0) {
        current = 0;
    }

    if(!isNaN(current) && !isNaN(next)) {
        total = parseInt(current) * parseInt(next);
    }

    totalItem = "itemsfactura-".concat(index).concat("-total_item");

    $("#"+totalItem+"").val(total);
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐