gpt4 book ai didi

jquery - 类型错误 : undefined is not a function - . 父级()

转载 作者:行者123 更新时间:2023-12-01 07:11:15 27 4
gpt4 key购买 nike

我正在学习 jquery 并尝试在树中导航。

$('.quick-info') returns a list
$('.quick-info')[0] grabs the first element in that list

当我尝试查找该列表中第一个元素的父元素时

$('.quick-info')[0].parent()

我收到错误:

TypeError: undefined is not a function

我做错了什么?

最佳答案

如果您想对返回集合的第一个元素调用 jQuery 的 parent() 方法,则需要将其重新包装在 jQuery 选择器中:

$($('.quick-info')[0]).parent();

...或者您可以使用jQuery's first() method获取第一个匹配元素:

$('.quick-info').first().parent();

...或者,正如 Cheery 所言 commented ,您可以使用jQuery's get() method而不是[0]:

$('.quick-info').get(0).parent();

否则,您将尝试在 HTML 节点上调用 jQuery 的 parent() 方法(该函数本身并不存在)。

关于jquery - 类型错误 : undefined is not a function - . 父级(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26592653/

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