JQuery onmouseover 只影响一个组件
我正在尝试为 html 中名为 switch 的所有 div 创建一个动画。想象一下典型的 iPhone Cocoa 开关。动画工作正常,但它仅适用于第一个组件,而不适用于所有组件,尽管它们都称为 switch
有什么建议吗?
谢谢!!
I'm trying to create an animation for all the divs called switch in the html. Imagine for example the typical iphone Cocoa switch. The animation works Ok, But it's only applied to the first component not for all of them, although they are all called switch
Any suggestion?
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们将更改您的处理程序:
当 jQuery 调用您的事件处理程序时,它将确保
this
引用正在为其调用处理程序的元素。Well change your handler:
When jQuery calls your event handler, it will make sure that
this
refers to the element for which the handler is being invoked.使用此关键字
use this keyword