我有一个 66 MB 的巨大 html 文件,我什至没有足够的能力在电子表格中打开它。必须汇总一列才能获得一次性付款。我复制并粘贴了一个 js 代码来进行计算,但它不起作用。有人可以帮我工作吗?指出错误。萤火虫显示没有错误
<!-- language: lang-js -->
<script src="http://code.jquery.com/jquery-2.1.1.min.js" type="text/javascript"/>
<script type="text/javascript">
$(document).ready(function() {
var total_figure = 0;
$("td.aws_figure").each(function() {
total_figure += parseInt($(this).text(), 10);
});
$("label#total").html(total_figure);
console.log(total_figure);
});
</script>