我有这个无序列表
有没有办法可以在无序列表前加上这样的结果?
注意,"ONE"被添加到列表的FRONT/TOP中.
$("ul").prepend("
像这样简单的东西应该工作:
使用prepend instread of append
Greetings Hello Goodbye $('.container').prepend('Test');
Test
有关详细信息,请参阅http://api.jquery.com/prepend/.