What is the best method in jQuery to add an additional row to a table as the last row?
Is this acceptable?
$(\'#myTable\').append(\' 30条回答 Happy的楠姐 (楼主) 2020-11-21 06:07 This can be done easily using the "last()" function of jQuery. $("#tableId").last().append("New row"); 0 讨论(0) 查看其它30个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
This can be done easily using the "last()" function of jQuery.
$("#tableId").last().append("New row");