gpt4 book ai didi

jQuery 切换 - 未捕获的类型错误 : undefined is not a function

转载 作者:行者123 更新时间:2023-12-01 01:33:22 24 4
gpt4 key购买 nike

我尝试使用以下 jquery 代码显示类的一个元素:

jQuery('.slide_cover').get(0).toggle(800);

但我收到此错误:

Uncaught TypeError: undefined is not a function 

代码舔这工作正常:

jQuery('.slide_cover').toggle(800);

如果我尝试在控制台中获取该元素,那么它就可以工作

jQuery('.slide_cover').get(0)

你能帮我吗?谢谢!

最佳答案

当您使用 get() 时,jQuery 从上下文中的元素数组返回 native (底层)DOM 对象,而 HTMLElement 不提供toggle() 方法。

如果您只想对上下文中的第一个元素调用 toggle,请尝试以下操作:

jQuery('.slide_cover:first').toggle(800);

参见Documentation

关于jQuery 切换 - 未捕获的类型错误 : undefined is not a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26859744/

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