Questions tagged «jquery-append»

12
如何将列表项添加到现有的无序列表中?
我有看起来像这样的代码: <div id="header"> <ul class="tabs"> <li><a href="/user/view"><span class="tab">Profile</span></a></li> <li><a href="/user/edit"><span class="tab">Edit</span></a></li> </ul> </div> 我想使用jQuery将以下内容添加到列表中: <li><a href="/user/messages"><span class="tab">Message Center</span></a></li> 我尝试了这个: $("#content ul li:last").append("<li><a href="/user/messages"><span class="tab">Message Center</span></a></li>"); 但是,增加了新的li 内最后一次li,以后不是(在结束标记之前)。添加此内容的最佳方法是li什么?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.