我成功地使用jQuery的奇數/偶數選擇器創建一個「虎條」 表中。然後我添加了添加或刪除行的功能。不過,我並不是 能夠使條帶在添加/刪除行時正常工作。它適用於添加/附加,但不適用於添加/前綴或刪除。下面是代碼的總結...jquery奇數/偶數問題prepend/append
$(document).ready(function(){
// click on Add Row button
$("#addButton").click(function(){
// add a row to table
addTableRow('#myTable');
// then re-apply tiger striping
stripeRows();
});
});
// remove specified row
function removeRow(row) {
$(row).parent("tr").remove();
stripeRows();
}
function StripeRows()
{
$("#myTable").each(function(){
$(this).find("tr:even").addClass("evenrow");
$(this).find("tr:odd").addClass("oddrow");
});
}
輝煌!謝謝。 – rshid 2010-01-02 02:23:46