<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不在我的控制之下,我需要在我的代码中处理这个问题。