0
<div id="virtualPath">
<a href='/'>text</a> >> 
<a href='' title=''>More text</a> >> 
<a href=''>Some text</a> >> 
<span class="boldFont">some more text</span>
</div>

我有如上图所示的 html。当我使用选择器时,我得到以下 html。

<div id="virtualPath"> 
<a href="/">text</a> &gt;&gt; 
<a href="" title="">more text</a> &gt;&gt; 
<span class="boldFont">some more text</span>
</div>

我应该使用什么配置来获得正确的 html?我知道 html 格式不正确,但是由于生成 html 不在我的控制之下,我需要在我的代码中处理这个问题。

4

1 回答 1

1

您可以使用Apache Commons Lang的unescapeHtml -Method来转义/取消转义您的 html。

于 2012-12-22T14:35:18.913 回答