首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

jquery获取 批改td中的值

2012-11-22 
jquery获取 修改td中的值//获取table1,第7个tr的第二个td的值。 $(#table1 tr:eq(1) td:nth-child(1)).ht

jquery获取 修改td中的值
//获取table1,第7个tr的第二个td的值。
$("#table1 tr:eq(1) td:nth-child(1)").html(value);设置td中的值
$("#table1 tr:eq(1) td:nth-child(1)").html();获取td中的值
<table id="table1">
<tr>
<td>test</td>
</tr>
</table

热点排行