这是我的表代码。数据从另一个表插入到该表中,但有重复项。我想插入没有重复项的行。我需要使用数组和某些其他 javascript 方法吗?
function onSelect(code,name,phone) {
var newRow = document.all("listtable").insertRow(-1);
Cell1 = newRow.insertCell(0);
Cell1.innerHTML = code;
Cell2 = newRow.insertCell(1);
Cell2.innerHTML = name;
Cell3 = newRow.insertCell(2);
Cell3.innerHTML = phone;
Cell4 = newRow.insertCell(3);
Cell4.innerHTML = "<font onclick=\"removeRow(this)\" style=\"color:red;cursor:pointer;\"> X </font>";
}