public function fetch_item($item)
{
$this->db->where("pgroup",$item);
$this->db->select('*');
$this->db->from('itemmaster');
$this->db-
>join('pgroup','pgroup.pgroupid
= itemmaster.catcode','left
outer');
$query_result = $this->db->get()-
>result();
//pass query result as html
$output = '<table class="table
table-
striped table-bordered table-
hover">
<thead>
<tr>
<th>Product Name</th>
<th>Rate</th>
<th>Qty</th>
<th>amount</th>
</tr>
</thead>
<tbody>';
if($query_result !='false'){
foreach ($query_result as $key
=>
$value) {
$output .='<tr>
<td>'.$value-
>product_name.'</td>
<td><input style="width:100px"
name="rate" type="text"
class="form-
control input-xs" value=""></td>
<td><input style="width:100px"
name="qty" type="text"
class="form-
control input-xs" value="">
</td>
<td><input style="width:100px"
name="amount" type="text"
class="form-
control input-xs" value="">
</td>
</tr>';
}
}
$output .="</tbody>
</table>";
echo $output;
}
这是用于获取数据的模型代码, 以表格格式创建。.
我的问题是我如何进行计算 像数量*值,并在值文本中显示 box.in模型代码中,我已经在该表中创建了表格,该如何计算....... 我该如何对已在模型页面中创建的表进行计算。
答案 0 :(得分:2)
从下面的代码更新您的foreach循环代码
$i=0;
foreach ($query_result as $key => $value) {
$output .='<tr>
<td>'.$value->product_name.'</td>
<td><input style="width:100px" name="rate" type="text" class="form-control input-xs" value="" id="rate_'.$i.'" onchange="calculate('.$i.')"></td>
<td><input style="width:100px" name="qty" type="text" class="form-control input-xs" value="" id="qty_'.$i.'" onchange="calculate('.$i.')"> </td>
<td><input style="width:100px" name="amount" type="text" class="form-control input-xs" value="" id="amount_'.$i.'">
</td></tr>';
$i++;
}
在您的视图页面中添加以下代码,以确保此脚本之前的jQuery min lode
<script type="text/javascript">
function calculate(id){
var rate=$("#rate_"+id).val();
var qty=$("#qty_"+id).val();
if(qty=="")
qty=0;
if(rate=="")
rate=0;
var total=rate*qty;
$("#amount_"+id).val(total);
}
</script>