前端之家收集整理的这篇文章主要介绍了
如何用jQuery选择和更改表格单元格的值?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用jQuery更改HTML示例中包含’c’字母的单元格的
内容?
<table id="table_header">
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
</table>
谢谢。
$("td:contains('c')").html("new");
或者更确切地说是$(“#table_headers td:contains(‘c’)”)。html(“new”);
也许为了重用你可以创建一个函数来调用
function ReplaceCellContent(find,replace)
{
$("#table_headers td:contains('" + find + "')").html(replace);
}
原文链接:https://www.f2er.com/jquery/181618.html