jQuery:自动触发悬停

前端之家收集整理的这篇文章主要介绍了jQuery:自动触发悬停前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个悬停鼠标mouSEOut设置如下列表项:

$("#main-nav li a").hover(function() {
                $el = $(this);
                leftPos = $el.position().left;
                newWidth = $el.parent().width();
                $magicNav.stop().animate({
                    left: leftPos,width: newWidth
                });
            },function() {
                t1 = $(".current-menu-item a").position().left;
                t2 = $(".current-menu-item a").parent().width();
                $magicNav.stop().animate({
                    left: t1,width: t2
                });    
            });

我想在有人进入网站或加载页面自动触发“.current-menu-item a”上的悬停.

目前,我使用$(“.current-menu-item a”).触发器(‘hover’);它不起作用.

救命?

最佳答案
用这个

$(document).ready(function(){
    $(".current-menu-item a").mouSEOver();
});

要么

$(window).load(function(){
    $(".current-menu-item a").mouSEOver();
});
原文链接:https://www.f2er.com/html/426407.html

猜你在找的HTML相关文章