コンテンツが JC の場合に td タグのコンテンツを John に置き換える方法を知っている人はいますか???? やってみるが、完全に機能させることはできません。
<body>
<table>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
<tr>
<td>PQ</td>
<td>ML</td>
<td>JC</td>
</tr>
</table>
<script>
$('td').filter(function () {
return $.trim($(this).text()) === "JC";
}).innerHTML.replace("JC","John");
<script>
</body>