对于列表项,我有一个悬停 mousein 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").trigger('hover');
它并不起作用。
帮助?