将表行添加到表的底部
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将表行添加到表的底部相关的知识,希望对你有一定的参考价值。
Great little snippit to add a to the bottom of a table. Note the use of the context in the jQuery e.g var n = $('tr:last td', this).length; Will have to use this in the future, very good to know!
/* Add a new table row to the bottom of the table */ function addTableRow(jQtable){ jQtable.each(function(){ var $table = $(this); // Number of td's in the last table row var n = $('tr:last td', this).length; var tds = '<tr>'; for(var i = 0; i < n; i++){ tds += '<td> </td>'; } tds += '</tr>'; if($('tbody', this).length > 0){ $('tbody', this).append(tds); }else { $(this).append(tds); } }); }
以上是关于将表行添加到表的底部的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 ng-repeat 重复的 J Query 将表行附加到表得到错误 $compile not found |Angular js