用javascript获取表中的数据

我想检索表中的数据,然后将其制成图表

请帮助如何从整体上检索总ID中的数据

http://img1.mukewang.com/60b0a23500019f0c11160477.jpg

</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>

感谢您的帮助


繁花不似锦
浏览 140回答 2
2回答

UYOU

代替ID<td id="total">&nbsp; &nbsp; <?= $total = $a+$b+$c+$d ?></td>成为一个班级<td class="total">&nbsp; &nbsp; <?= $total = $a+$b+$c+$d ?></td>如果您安装了Jquery,则可以尝试执行此操作,这将检索total列中所有值的总数var totalVal;$('.total').each( function(index, element) {&nbsp; &nbsp; totalVal += parseInt(element.html());});
打开App,查看更多内容
随时随地看视频慕课网APP