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.
我想使用 unwrap 但跳过将其应用于前 3 个元素以及最后一个元素。我该怎么做?这是我尝试过的:
$(".top_link:gt(3)").not(":last").unwrap();
它似乎不起作用..我该怎么办?谢谢你的任何想法..
尝试这个
$(".top_link:gt(2):not(:last)").unwrap();
这可能很棘手,但您始终可以计算 .top_link 的数量并减一。
$(".top_link:gt(3):lt("+($(".top_link").length - 1)+")").unwrap();