jquery – 更改表格单元格内容

前端之家收集整理的这篇文章主要介绍了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/182700.html

猜你在找的jQuery相关文章