Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以通过 jquery 在我的主菜单上添加一些 html。我如何通过 jquery 删除最后一个项目 html 是可能的吗?
$( document ).ready(function() { $( ".menubarinner ul li" ).after( "<div class='sperator'></div>" ); });
删除最新的 sperator
所以$('.separator').last().remove();
$('.separator').last().remove();
http://api.jquery.com/last/
您只需找到 ul 的最后一个 li,然后将其删除 -
$('ul li:last-child').remove();