最佳答案
使用 jQuery,我试图替换所有出现的:
<code> ... </code>
与:
<pre> ... </pre>
我已经说了很多了,
$('code').replaceWith( "<pre>" + $('code').html() + "</pre>" );
but the issues is that it's replacing everything between the (second, third, fourth, etc)"code" tags with the content between the 第一 "code" tags.
e.g.
<code> A </code>
<code> B </code>
<code> C </code>
变成了
<pre> A </pre>
<pre> A </pre>
<pre> A </pre>
我认为我需要使用“ this”和某种函数,但是我恐怕还在学习,不能真正理解如何拼凑一个解决方案。