我想检索表中的数据,然后将其制成图表请帮助如何从整体上检索总ID中的数据</table> <label for="">Table Hasil</label> <table class="table" border="1" id="hasil"> <thead class="thead-dark"> <tr> <th>No</th> <th>Alternatif</th> <th>C1</th> <th>C2</th> <th>C3</th> <th>C4</th> <th>Total</th> </tr> </thead> <?php $i=1; foreach ($saw as $s) { ?> <tr> <td> <?= $i++ ?> </td> <td> <?= $s->alternatif ?> </td> <td> <?= $a = round($s->c1/$nilaiMax->c1 *0.25,2) ?> </td> <td> <?= $b = round($s->c2/$nilaiMax->c2 *0.25,2 ) ?> </td> <td> <?= $c = round($s->c3/$nilaiMax->c3*0.3,2) ?> </td> <td> <?= $d = round($s->c4/$nilaiMax->c4*0.2,2) ?> </td> <td id="total"> <?= $total = $a+$b+$c+$d ?> </td> </tr> <?php } ?></table>感谢您的帮助
2 回答
UYOU
TA贡献1878条经验 获得超4个赞
代替ID
<td id="total">
<?= $total = $a+$b+$c+$d ?>
</td>
成为一个班级
<td class="total">
<?= $total = $a+$b+$c+$d ?>
</td>
如果您安装了Jquery,则可以尝试执行此操作,这将检索total列中所有值的总数
var totalVal;
$('.total').each( function(index, element) {
totalVal += parseInt(element.html());
});
- 2 回答
- 0 关注
- 139 浏览
添加回答
举报
0/150
提交
取消