JQuery悬停()可能性?
我按照文档中的建议使用悬停():
$("#div").hover(
function(){$(this).addClass('cie_hover');},
function(){$(this).removeClass('cie_hover') ;}
);
有没有一种方法可以在其他对象上使用更多功能? 如果是的话,在数组中引入函数的语法是什么?
我想要做的是更改我悬停的 div 的类,并使用相同的 hover()
操作在其他地方更改另一个 sildeDown()
类。
I'm using hover() as suggested in the documentation:
$("#div").hover(
function(){$(this).addClass('cie_hover');},
function(){$(this).removeClass('cie_hover') ;}
);
Is there a way I can use more functions on other objects? And if so what would be the syntax to introduce functions in array?
What I would like to do with that is change the class of the div I'm hovering and sildeDown()
another one elsewhere with that same hover()
action.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这些只是函数回调。 函数的主体可以是您想要的任何内容:
Those are just function call backs. The body of the function can be anything you want:
只需将其添加到悬停时执行的匿名函数中即可
Simply add it into the anonymous function executed on hover over