如何在使用jquery删除tbody后追加tbody?

时间:2011-08-11 06:53:52

标签: jquery-ui-dialog

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>");
                                }          

1 个答案:

答案 0 :(得分:1)

$("#compRecord").append("<tbody><tr>...</tr></tbody>");

如果这不是您要找的,那么您需要更好地描述您的问题。只是头部的问题和一些没有解释的随机代码不是一个好问题。