jQuery 的 Scriptaculous 函数
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来你想要的是这样的:
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
试试这个:
更多信息
Try this:
more info