我有一个悬停鼠标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’);它不起作用.
救命?
最佳答案
原文链接:https://www.f2er.com/html/426407.html