-3
A
回答
5
...
var orderArrayHeader = ["S.No","Date","Product Name","Client Name"];
...
var thead = document.createElement('thead');
table.appendChild(thead);
for(var i=0;i<orderArrayHeader.length;i++){
thead.appendChild(document.createElement("th")).
appendChild(document.createTextNode(orderArrayHeader[i]));
}
...
+0
非常感謝 – Maayi
0
使用
<table>
<thead>
<tr>
<th>S.No</th>
<th>Date</th>
<th>ProductName</th>
<ht>ClientName</th>
</tr>
</thead>
做一些造型,你會得到你想要的....
相關問題
- 1. 表頭JavaScript的
- 2. 表頭
- 3. 動態在表頭上創建表頭
- 4. 頭部內的多個表頭
- 5. HTTP頭列表
- 6. 表頭問題
- 7. Vaadin表頭彩
- 8. 雙頭Matplotlib表
- 9. 與表Migradoc頭
- 10. 多頭鏈表
- 11. 訪問表頭
- 12. 合併表頭
- 13. 數據表頭
- 14. 表內頭
- 15. 表頭處理
- 16. 表頭:重複
- 17. 定位表頭
- 18. Python列表頭
- 19. jQuery添加數據形式表頭內的表頭
- 20. jQuery的數據表的特殊表頭
- 21. 固定的水平表頭
- 22. 鏈表中的頭節點
- 23. 的Javascript修正表頭
- 24. 錯誤方向的表頭
- 25. StoryBoards中的表頭視圖
- 26. AngularJS中的固定頭表
- 27. 帶乳膠頭的表格?
- 28. 鏈表中的頭節點
- 29. 表頭上的按鈕
- 30. 浮動表頭的多行
這是什麼問題? – PeeHaa
與行相同,但添加[thead](https://developer.mozilla.org/en-US/docs/HTML/HTML_Elements/thead?redirectlocale=zh-CN&redirectslug=HTML%2FElement%2Fthead)到你的桌子。 –
正在獲取數組值。我正在試圖在表格頂部添加一個新的行作爲標題。 – Maayi