最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jQuery load the first ten elements with specific class - Stack Overflow

programmeradmin1浏览0评论

The page I'm trying to load is something like this (although, the number of paragraphs with the class "text" is different every time):

<html>
<body>
<div id="container">
<p class="text">1</p>
<p class="text">2</p>
<p class="text">3</p>
<p class="text">4</p>
<p class="text">5</p>
<p class="text">6</p>
<p class="text">7</p>
<p class="text">8</p>
<p class="text">9</p>
<p class="text">10</p>
<p class="text">11</p>
<p class="text">12</p>
<p class="text">13</p>
<p class="text">14</p>
<p class="text">15</p>
<p class="text">16</p>
<p class="text">17</p>
<p class="text">18</p>
<p class="text">19</p>
<p class="text">20</p>
<p class="sometext">Some other text here</p>
</div>
</body>
</html>

Is it possible to load only the first ten paragraphs with jQuery with something like $('#text').load('other_file.html #container .p');?

The page I'm trying to load is something like this (although, the number of paragraphs with the class "text" is different every time):

<html>
<body>
<div id="container">
<p class="text">1</p>
<p class="text">2</p>
<p class="text">3</p>
<p class="text">4</p>
<p class="text">5</p>
<p class="text">6</p>
<p class="text">7</p>
<p class="text">8</p>
<p class="text">9</p>
<p class="text">10</p>
<p class="text">11</p>
<p class="text">12</p>
<p class="text">13</p>
<p class="text">14</p>
<p class="text">15</p>
<p class="text">16</p>
<p class="text">17</p>
<p class="text">18</p>
<p class="text">19</p>
<p class="text">20</p>
<p class="sometext">Some other text here</p>
</div>
</body>
</html>

Is it possible to load only the first ten paragraphs with jQuery with something like $('#text').load('other_file.html #container .p');?

Share Improve this question asked Dec 28, 2011 at 0:12 SnackerSWESnackerSWE 6591 gold badge10 silver badges19 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 6

Use the :lt() selector. It's 0-based so p:lt(10) should load the first 10 p elements.

$('#text').load('other_file.html #container p:lt(10)');

Keep in mind the whole response is still being downloaded, only a subsection is displayed via the selector.

You probably want to use the :lt() selector:

$('#text').load('other_file.html #container p:lt(10)');

try using the :lt() selector

http://api.jquery./lt-selector/

$('#text').load('other_file.html #container p:lt(10)')

You can use a CSS3-style selector to only load the first 10 elements:

$('#text').load('other_file.html #container .p:nth-child(-n+10)');

This will load the first 10 p elements within the #container element.

Docs: http://api.jquery./nth-child-selector/ (Note that nth-child starts at one, not zero)

发布评论

评论列表(0)

  1. 暂无评论