0

我正在从这样的远程服务器调用表

document.getElementById("datatable").innerHTML=xmlhttp.responseText;

但我想知道是否要在此表顶部添加一个标题,它是如何编码的?我正在考虑添加一个表格并将该标题放入

<table>
    <tr>
        <td>Title of the Table</td>
    </tr>
</table>
4

2 回答 2

0

如果 JQuery 是一个选项,它变得非常容易:

$(document).ready( function() {
  $('#datatable').prepend('<thead><tr><th>Title</th></tr></thead>');
});
于 2013-06-10T17:36:19.847 回答
0

我会使用<th>html 元素。

于 2013-06-10T17:28:19.297 回答