HTML / JavaScript表头

时间:2012-08-29 14:47:44

标签: javascript html

有人可以帮助我在表格顶部创建一个新行,如...

| S.No | Date | Product Name | Client Name |

请查看此fiddle

2 个答案:

答案 0 :(得分:6)

...

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]));
}

...

http://jsfiddle.net/QwBsa/12/

答案 1 :(得分:0)

使用

<table>
    <thead>
        <tr>
            <th>S.No</th>
            <th>Date</th>
            <th>ProductName</th>
            <ht>ClientName</th>
        </tr>
    </thead>

做一些造型,你会得到你想要的......