Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
动态添加行后如何计算行数。我的表行正在添加克隆方法。
的 DOM 元素<table>将有一个rows集合:
<table>
rows
document.getElementById('table-id').rows.length;
您还可以选择支持浏览器中的行:
document.querySelectorAll('#table-id > tr').length;
或者,如果您使用的是 jQuery 等库:
$('#table-id > tr').length;