如何更换TD标签内的所有P标签而不更改TD外的P标签?
<p align="justify">Example 01</p>
<td style="text-align: center;" width="104">
<p align="center"><strong>My Strong</strong></p>
<p align="center"><strong>Anoter content</strong></p>
</td>
<td style="text-align: center;" width="153">
<p align="center"><strong>lorem</strong></p>
</td>
我期待得到这个:
<p align="justify">Example 01</p>
<td style="text-align: center;" width="104">
<span align="center"><strong>My Strong</strong></span>
<span align="center"><strong>Anoter content</strong></span>
</td>
<td style="text-align: center;" width="153">
<span align="center"><strong>lorem</strong></span>
</td>