-2

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

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

请看这个小提琴

4

2 回答 2

9

...

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/

于 2012-08-29T14:58:57.273 回答
0

利用

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

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

于 2012-08-29T14:53:20.470 回答