JQuery悬停()可能性?

发布于 2024-07-29 05:44:38 字数 342 浏览 5 评论 0原文

我按照文档中的建议使用悬停():

 $("#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

往日 2024-08-05 05:44:38

这些只是函数回调。 函数的主体可以是您想要的任何内容:

 $('#div').hover(
      function(){
           $(this).addClass('cie_hover');
           $('#otherdiv').slideDown();
      }, function(){
           $(this).removeClass('cie_hover');
           $('#otherdiv').slideUp();
      }
 );

Those are just function call backs. The body of the function can be anything you want:

 $('#div').hover(
      function(){
           $(this).addClass('cie_hover');
           $('#otherdiv').slideDown();
      }, function(){
           $(this).removeClass('cie_hover');
           $('#otherdiv').slideUp();
      }
 );
羁拥 2024-08-05 05:44:38

只需将其添加到悬停时执行的匿名函数中即可

 $("#div").hover(
 function(){
     $(this).addClass('cie_hover');
     $('selector for thing you want to slide down').slideDown();
 },          
 function(){
     $(this).removeClass('cie_hover');
 });

Simply add it into the anonymous function executed on hover over

 $("#div").hover(
 function(){
     $(this).addClass('cie_hover');
     $('selector for thing you want to slide down').slideDown();
 },          
 function(){
     $(this).removeClass('cie_hover');
 });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文