我好几个小时都找不到答案。请建议:
拥有一个仅包含以下段落中的用户评论的 .html 文件:
<p>12/02/2012 4:32pm Mark</p>
<p>Hi! it's a nice demo! Really thankful</p>
<hr>
<p>11/02/2012 11:03am Miron</p>
<p>How to change the font size from CFD again?</p>
<hr>
<!-- AND LOADS OF OTHER <P><P> COMMENTS DELIMITED BY <HR> ... -->
有 1000 条这样的评论,
我想以某种方式获取最新的 10 条(不是按日期,只是前“十”条评论)。而且我不知道怎么做。
我知道我可以使用 jQuery.load('comments.html')
并删除除前 10 条评论之外的所有元素,甚至使用 PHP 包含整个文件,而不是.hide()
使用jQuery ......但加载整个文件仅包含 10 条评论是个好主意?
如何拆分该文件并进入文件<div id="latest_10_comments"></div>
的前 10 条评论comments.html
?