任何人都知道当内容是 JC 和 John 时如何替换 td 标签的内容????试一试,但无法使其充分发挥作用。
<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>