1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| function addRow() { let newRow = $("<tr><td>幸福从天而降</td><td align='center'>¥18.50</td></tr>"); $("#row1").parent().append(newRow); }
function updateRow() { $("#row1").css({"font-weight": "bold", "text-align": "center", "background-color": "#cccccc"}); }
function delRow() { let dRow = document.getElementsByTagName("tr"); if (dRow[2] != null) { dRow[2].remove(); } }
function copyRow() { let lastRow = $("#myTable tr:last-child"); let newRow = lastRow.clone(); $("#myTable").append(newRow); }
|