jquery用标记文本替换标记

我想用实际的html替换标签span.textReplace

让我说我有一个字符串dom看起来像这样:

hello world Query 1
this is a test Query 2 this is another test Query3 finished

我希望#content的html看起来像这样:

你好世界Query1
这是一个测试Query2这是另一个测试Query3完成的。

得到它了。

 $("#content span.textReplace").replaceWith(function () { return $(this).text() }); 

你的意思是:

 $('span.textReplace').html("actual html"); 

这个新的HTML源来自哪里?