使用.slice()方法仅设置列表中特定元素的样式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用.slice()方法仅设置列表中特定元素的样式相关的知识,希望对你有一定的参考价值。
/* <ul> <li>Apples</li> <li>Pears</li> <li>Cherries</li> <li>Grapes</li> <li>Mangos</li> </ul> */ /*If we just want to set the background-color of everything after element number two (pears) we can do this using:*/ $('li').slice(2).css('background-color', 'yellow'); /*and if we want to set the bg-color of the elements after two(pears), but only up to and including 4 (grapes), we can use:*/ $('li').slice(2, 4).css('background-color', 'green')
以上是关于使用.slice()方法仅设置列表中特定元素的样式的主要内容,如果未能解决你的问题,请参考以下文章