使用jQuery将th添加到表中

时间:2015-02-25 21:03:13

标签: jquery

如何使用jQuery

<th>添加新的<thead>
<table id="table">
  <thead>
    <tr>
      <th>First</th>
    </tr>
  <thead>
</table>

1 个答案:

答案 0 :(得分:1)

使用jQuery append方法。

$("#table>thead>tr").append("<th>Second</th>");