gpt4 book ai didi

javascript - jQuery 是 (":first") 无效

转载 作者:行者123 更新时间:2023-11-30 10:18:58 25 4
gpt4 key购买 nike

我用jQuery is(":first") 来判断一个元素是否在它的 sibling 中是第一个,但它总是返回false。有什么不对吗?还是 jQuery 的错误?谢谢。

$(".page:first").is(":first"); //always return false.

最佳答案

先测试是否找到.page element 是您可以使用的第一个兄弟 .index() :

if ($('.page:first').index() == 0) {
// it's the first child
}

或者简单地说:

if ($('.page').index() == 0) {
// it's the first child
}

.is()函数通过将当前结果集与给定的选择器匹配来工作,这是文档的第一个元素,即 <html> .只有$('html').is(':first')将是 true .

关于javascript - jQuery 是 (":first") 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22294287/

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