所以如果我调用这个函数:
$("#item").text()
在这个 HTML 代码上:
<div id="item">
<pre><span class="cm-tag"><html></span></pre><pre><span class="cm-tab"> </span>asdf</pre><pre><span class="cm-tag"></html></span></pre>
</div>
它返回:
'<html> asdf</html>'
我希望它返回:
'<html>
asdf
</html>'
基本上我需要在每个<pre>
标签后换行......我该怎么做?