本文介绍了jQuery追加到列表的前面/顶部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这个无序列表
<ul>
<li>two</li>
<li>three</li>
</ul>
有没有一种方法可以使我排在无序列表的前面,这样它就可以像这样结束?
Is there a way I can prepend to the unordered list so that it ends up like this?
<ul>
<li>ONE</li>
<li>two</li>
<li>three</li>
</ul>
请注意,"ONE"已添加到列表的前/上".
Notice the "ONE" is added to the FRONT/TOP of the list.
推荐答案
$("ul").prepend("<li>ONE</li>");
这篇关于jQuery追加到列表的前面/顶部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!