gpt4 book ai didi

javascript - 使用 jquery 显示有限的数据

转载 作者:太空宇宙 更新时间:2023-11-04 14:34:38 26 4
gpt4 key购买 nike

如何限制附加数据?类似分页的东西。

例如,如果我添加了 5 条评论,它应该显示3 条最新评论,其他 2 条评论应该隐藏并且应该在点击显示更多评论。我想用 Jquery 做的一切。

查看 Js Fiddle: http://jsfiddle.net/7jE9p/1/

请看这张图片。只是为了澄清我的观点:

enter image description here

我也在这里提供我的代码:

HTML:

      <p>
<a href="javascript:void(0);" class="add_more">Add More</a>
</p>

<table border="0" width="500" cellspacing="0">
<tbody class="append_data"></tbody>

<tr>
<td>
<textarea name="description" id="description"></textarea>
</td>
</tr>

</table>

CSS:

#description{
width:400px;
}

.description_text{
border:#333333 solid 1px;
width:400px !important;
}

.append_data{
white-space: pre-wrap; /* CSS3 */
white-space: -moz-pre-wrap; /* Firefox */
white-space: -pre-wrap; /* Opera <7 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* IE */
}

JQuery:

$('.add_more').click(function()
{
var description = $('#description').val();
$(".append_data").append('<div class="description_text">'+description+'</div><br><br>');
});

最佳答案

var comments = $('.description_text').size();
if (comments > 3) {
$('.description_text').slice(0,comments-3).hide();
}

但是您需要更新代码以删除 BR 并添加一些 css 填充、 float 或类似内容。

http://jsfiddle.net/7jE9p/3/

关于javascript - 使用 jquery 显示有限的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18843295/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com