Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 jQuery FixedTable 插件的新手。
我想在现有表中添加一个新行。
我不知道该怎么做。
试试下面的代码:
<table id="tbl" border="1"></table>
jQuery
$('#tbl').append( '<tr><td>Nitin</td></tr>' ); $('#tbl').append( '<tr><td>Akk</td></tr>' );