gpt4 book ai didi

javascript - 使用 jQuery 显示可见元素

转载 作者:行者123 更新时间:2023-12-02 13:47:53 25 4
gpt4 key购买 nike

此示例中的 + 1 意味着什么?在这个语句中: if ($('.hideme').index($(this)) + 1 === $('.hideme').length)

http://jsfiddle.net/e5qaD/1151/

这是来自 stackoverflow 上一个问题的答案: Show Div when scroll position

最佳答案

index 从零开始,非空元素的 length 属性从 1 开始。

Jquery index 方法从匹配的元素中搜索给定元素。

来自Jquery Documentation

If a selector string is passed as an argument, .index() returns an integer indicating the position of the first element within the jQuery object relative to the elements matched by the selector. If the element is not found, .index() will return -1.

在大多数编程语言中,索引从 0 开始。因此,返回的索引总是比实际数字小 1。

关于javascript - 使用 jQuery 显示可见元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41229869/

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