我有一个巨大的html文件66 MB我没有足够的力量甚至在电子表格中打开它。 一栏必须总结得到一次性总和。 我复制&粘贴一个js代码来进行计算,但它不起作用。 有人可以帮我工作吗?指出错误。 firebug显示没有错误
<!-- 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>
答案 0 :(得分:0)
像这样关闭脚本标记。 Script tag is not a self closable tag
。
<script src="http://code.jquery.com/jquery-2.1.1.min.js" type="text/javascript"></script>