js遍歷table某一列內容出現的次數記錄
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
:js遍歷table某一列內容出現的次數記錄 示例代碼: <script> function countvalueshow(myTable,colindex){ const table = document.getElementById(myTable); const rows = table.getElementsByTagName('tr'); const colCount = colindex; // 第二列的索引是1,因為索引從0開始計算 let countMap = {};
for (let i = 1; i < rows.length; i++) { // 跳過表頭 const cell = rows[i].getElementsByTagName('td')[colCount]; const age = cell.textContent.trim();
if (countMap[age]) { countMap[age]++; } else { countMap[age] = 1; } } console.log(countMap); return countMap; } countvalueshow('myTable',1)
</script> 該文章在 2024/12/5 17:19:01 編輯過 |
關鍵字查詢
相關文章
正在查詢... |