jQuery使用第n个子元素将列表项分成两部分
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery使用第n个子元素将列表项分成两部分相关的知识,希望对你有一定的参考价值。
/* <div id="latest_left"> <ul> <li>1<li> <li>1<li> <li>1<li> <li>1<li> </ul> </div> <div id="latest_right"> <!--important it shud be here.--> </div> */ $("#latest li:nth-child(4)").prependTo("#latest_right"); $("#latest li:nth-child(5)").prependTo("#latest_right"); $("#latest li:nth-child(6)").prependTo("#latest_right"); $("#latest li:nth-child(7)").prependTo("#latest_right"); $("#latest li:nth-child(2)").prependTo("#latest_right"); OR /* <div id="latest_left"> <ul> <li>1<li> <li>1<li> <li>1<li> <li>1<li> </ul> </div> <div id="latest_right"> <!--important it shud be here.--> </div> */ $("#latest_left ul").prependTo("#latest_right");
以上是关于jQuery使用第n个子元素将列表项分成两部分的主要内容,如果未能解决你的问题,请参考以下文章