如何获取前缀ID值并检查ID是否已定义,以及如何在变量中存储值。
calculate_grand_total();
}
function calculate_grand_total() {
var rowcount = $("#hidden_rowcount").val();
var grand_total = parseFloat(0);
for (i = 0; i < rowcount; i++) {
grand_total += parseFloat($("#gtl_" + i).val());
}
$("#totalamt").html(grand_total);
}
如果该时间缺少一个ID,则不应打印
答案 0 :(得分:1)
为什么不使用数据?
<div id="hidden_rowcount" data-id="2">
然后
var hidd_row_id = $("#hidden_rowcount").data("id");
console.log(hidd_row_id);