为了演示,请参阅我的 html :
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
See it:
<pre>
print "Say hello"
</pre>
<p><b>==SEP==</b></p>
<pre>
class Voila {
public:
// Voila
static const string VOILA = "Voila";
// will not interfere with embedded <a href="#voila1">tags</a>.
}
</pre>
</html>
在 Chrome v26 控制台中,我执行:
var pres_orig=$('pre').clone()
$('pre').replaceWith('<pre>spam</pre>')
然后我的问题:如何<pre>
从保存的 pres_orig 中克隆回内容,以便我的页面显示其原始内容?
我尝试了以下不起作用的方法:
$('pre').replaceWith(pres_orig)