2013-07-05 65 views
-7

如何統計動態添加行後的行數。我的表格行正在添加克隆方法。如何在動態添加錶行時統計表中的行數

+0

可能的重複:http://stackoverflow.com/question s/5685184/use-javascript-to-count-immediate-child-elements-of-an-element – Sumurai8

+0

我懷疑它是否重要,如果這是重複的。這沒有顯示任何研究。 – iGanja

+0

@Aravinth那麼,「*然後離開它*」是不是這個社區如何工作,這是自我溫和。 downvotes表明你的問題的質量存在問題,而iGanja的評論坦率地確實導致了這是什麼 - 「[*包括: - 對你的問題是什麼的一個合理的解釋。**儘可能詳細地添加你的問題* *。 - 任何你已經嘗試過的背景研究,但不足以解決你的問題。*](http://stackoverflow.com/help/quality-standards-error)「否則,」[*如果你問一個模糊的問題,你會得到一個模糊的答案。*](http://stackoverflow.com/help/how-to-ask)「 –

回答

2

<table>的DOM元素將有一個rows collection

document.getElementById('table-id').rows.length; 

您還可以在select the rowssupporting browsers

document.querySelectorAll('#table-id > tr').length; 

或者,如果您使用的是庫如jQuery:

$('#table-id > tr').length; 
+0

我不知道rows.length不工作 – Arut

+1

@阿魯特它可以工作:http://jsfiddle.net/coiscir/VyUgT/ –

+0

@JonathanLonowski罰款。 – Aravin