gpt4 book ai didi

php - 获取最后一个元素的 x 个数

转载 作者:行者123 更新时间:2023-11-28 20:26:18 29 4
gpt4 key购买 nike

如何有效地从末尾获取一定数量的元素?

<div><span>1</span></div>
<div><div>looks like 2</div></div>
<div>three!!</div>

例如,如何获取最后 2 个 div 的内容?

最佳答案

$(document).ready(function(){
var total = $("div").length;
var last = $("div").eq(total-1).html();
var secondlast = $("div").eq(total-2).html();
});

查看演示 here

关于php - 获取最后一个元素的 x 个数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17335374/

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