我正在使用 jQuery。
有什么方法可以在下面的p标签中用自己的文本替换锚文本?
<p>
<a href="#">Some Text1</a> some text goes here
<a href="#">Some Text2</a> some other text goes here
</p>
期望的输出:
<p>
Some Text1 some text goes here
Some Text2 some other text goes here
</p>