I want to use unwrap but skip from applying this to the first 3 elements and from the last one also.. How can I do this? This is what I tried:

$(".top_link:gt(3)").not(":last").unwrap();

It doesn't seem to work.. What can I do? Thank you for any idea..

有帮助吗?

解决方案

try this

$(".top_link:gt(2):not(:last)").unwrap();

其他提示

This may be tricky but you can always count the number of .top_link and subtract one.

$(".top_link:gt(3):lt("+($(".top_link").length - 1)+")").unwrap();
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top