追加表格代码
var tr = '<tr id="trdata" ><td class="code" >'+item_name+'</td><td class="itemname" >'+item_name2+'</td> <td class="qty" >'+qty+'</td><td class="rate" >'+rate+'</td> <td class ="grand">'+total+'</td> <td><button type = "button" class="btn btn-danger btn-xs" >Remove</button></td></tr>';
$('tbody').append(tr);
$("#form2")[0].reset();
}
获取价值的代码
$('#save').click(function(){
var code = [];
var itemname = [];
var qty = [];
var rate = [];
var grand = [];
$('.code').each(function(){code.push($(this).text());});
$('.itemname').each(function(){itemname.push($(this).text());});
$('.qty').each(function(){qty.push($(this).text());});
$('.rate').each(function(){rate.push($(this).text());});
$('.grand').each(function(){grand.push($(this).text());});
});
在我的控制台中显示重复的值
"console.log(code);"
[]
0: "3"
1: "3"
length: 2
如何避免这种重复,并且在使用插入查询时也插入了我的数据库
答案 0 :(得分:0)
您可以测试.includes()
$('.code').each(function(){
if (!code.includes($(this).text()) {
code.push($(this).text());
}
});
但是,如果需要使所有阵列保持同步,则应在行上使用一个循环,而不是对每个字段使用单独的循环。
$("tr").each(function() {
var curCode = $(this).find(".code").text();
if (!code.includes(curCode)) {
code.push(curCode);
itemname.push($(this).find(".itemname").text());
qty.push($(this).find(".qty").text());
rate.push($(this).find(".rate").text());
grand.push($(this).find(".grand").text());
}
});