Yii2-dynamicforms和javascript
发布时间:2020-12-13 13:45:17 所属栏目:PHP教程 来源:网络整理
导读:我有在Yii2中工作的wbraganca动态表单,但我需要添加一个小函数来乘以2个字段并将值放在第三个中,并在每个新动态表单中执行此操作(假设字段1是价格,字段2是金额和字段3总计). 使用我的代码,我能够做到这一点,但只能在第一个动态表单上. ?php$script = JS$('#i
我有在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); } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |