jQuery limit the number of elements shown to say like 5

蹲街弑〆低调 提交于 2019-12-20 01:43:13

问题


I got lets say this:

<ol>
<li>Content1</li>
    <li>Content2</li>
    <li>Content3</li>
    <li>Content4</li>
    <li>Content5</li>
    <li>Content6</li>
    <li>Content7</li>
    <li>Content8</li>
    <li>Content9</li>
    <li>Content10</li>
    <li>Content11</li>
    <li>Content12</li>
    <li>Content13</li>
</ol>

And the js something like this :

$("li").hide()
$("li:contains('Content')").show()

Qusetion :

Now How can i limit the number of shown elements to lets say around 5 ?


回答1:


$("ol li:contains('Content')").slice(0, 5).show();

or:

$("ol li:contains('Content'):lt(5)").show();



回答2:


try this-

$("ol li:contains('Content'):lt(5)").show();


来源:https://stackoverflow.com/questions/6936578/jquery-limit-the-number-of-elements-shown-to-say-like-5

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!