标签: jquery
如何使用jQuery
<th>
<thead>
<table id="table"> <thead> <tr> <th>First</th> </tr> <thead> </table>
答案 0 :(得分:1)
使用jQuery append方法。
$("#table>thead>tr").append("<th>Second</th>");