-1
if ($("#ddlRateCode").next().val() != "MYKL GROSS") {
$("#compRecord tbody").remove();
$("#compRecord tbody").append("<tr class='compensationRecords'>" +
"<td class='tdCompRateCode table_td'>" + $("#ddlRateCode").next().val() + "</td>" +
"<td class='tdCompRate table_td'>" + $("#txtCompRate").val() + "</td>" +
"<td class='tdCompPercent table_td'>" + $("#txtCompPercent").val() + "</td>" +
"<input type='hidden' value='" + $("#ddlRateCode").val() + "' class='tdRateCodeId' />" +
"<td class='table_td'><button class='edit'>Edit</button>" +
"<button class='btnDelete'>Delete</button></td>" +
"</tr>");
}
答えが必要な場合は、もう少し詳しく説明しなければならないと思います。 ;) –