我有一些 URL 被动态输出到包含&
这样的 div 上:
<div id="box">
<a href="http://domain.com/index.html&location=1">First URL</a>
<a href="http://domain.com/index.html&location=2">Second URL</a>
</div>
有没有办法 - 使用 jQuery - 将每个实例&
转换为等效的 HTML 实体,以便输出变成这个?
<div id="box">
<a href="http://domain.com/index.html&location=1">First URL</a>
<a href="http://domain.com/index.html&location=2">Second URL</a>
</div>