<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> >>
<a href="" title="">more text</a> >>
<span class="boldFont">some more text</span>
</div>
我应该使用什么配置来获得正确的 html?我知道 html 格式不正确,但是由于生成 html 不在我的控制之下,我需要在我的代码中处理这个问题。