jQuery 的 Scriptaculous 函数

发布于 2024-12-15 13:16:17 字数 406 浏览 2 评论 0原文

我有一个 scriptaculous 函数,我需要将其更改为 Jquery。

$$("div.mydiv a").each( function(el) {
    Event.observe(el, "mouseover", function() {
        $('other').addClassName(el.className+'hover');
    });
});
$$("div.mydiv a").each( function(el) {
    Event.observe(el, "mouseout", function() {
        $('other').removeClassName(el.className+'hover');
    });
});

请问,有人知道如何做到这一点吗?

I have a scriptaculous function that I need to change to Jquery.

$("div.mydiv a").each( function(el) {
    Event.observe(el, "mouseover", function() {
        $('other').addClassName(el.className+'hover');
    });
});
$("div.mydiv a").each( function(el) {
    Event.observe(el, "mouseout", function() {
        $('other').removeClassName(el.className+'hover');
    });
});

Please, does anyone has Any idea of how to do that ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

情魔剑神 2024-12-22 13:16:17

看来你想要的是这样的:

http://jsfiddle.net/Qchmqs/VbPGd/

只是调整它以适合您当前的 html

我不知道 scriptaculous

但我觉得这就是您想要实现的效果

it seems like what you want is this :

http://jsfiddle.net/Qchmqs/VbPGd/

just tweak it to suit your current html

i don't know about scriptaculous

but i feel like this is the effect you want to acheive

最偏执的依靠 2024-12-22 13:16:17

试试这个:

 $('div.mydiv a').hover(function(){
     $('other').addClass($(this).attr('class')+'hover') ;
},function(){
     $('other').removeClass($(this).attr('class')+'hover') ;
});

更多信息

Try this:

 $('div.mydiv a').hover(function(){
     $('other').addClass($(this).attr('class')+'hover') ;
},function(){
     $('other').removeClass($(this).attr('class')+'hover') ;
});

more info

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文