假设你有这个:
<ul>
<li>[foo] more stuff here</li>
<li>[bar] stuff here</li>
<li>[123] stuff here</li>
</ul>
你想要这个:
<ul>
<li id="foo">more stuff here</li>
<li id="bar">stuff here</li>
<li id="123">stuff here</li>
</ul>
使用 jQuery,最简单的方法是什么?