具有子菜单淡入淡出效果的导航,链接损坏 - jQuery
我有一个按我想要的方式工作的导航菜单,但是当我单击子菜单中的链接时,它不会加载页面。它只会启动淡出效果。我不知道为什么链接无法加载页面。如果我关闭 jQuery,它就可以正常工作。知道为什么会发生这种情况以及如何解决它吗?
var delay = 100;
var fade = 400;
$j(function(){
$j('#access-navi li.sub').toggle(function(){
$j(this).find('ul li a').each(function(i){
$j(this).delay(i*delay).fadeIn(fade);
});
}, function() {
$j('#access-navi li.sub').find('ul li a').fadeOut(fade/2);
});
});
HTML:
<div id="access-navi" class="no-j" role="navigation">
<ul>
<li><a href="/">Home</a></li>
<li class="sub"><a href="#">Code</a>
<ul>
<li><a href="/code/html-css/">Html.Css</a></li>
<li><a href="/code/java/">Java</a></li>
<li><a href="/code/jquery/">jQuery</a></li>
<li><a href="/code/php/">Php</a></li>
</ul>
</li>
</ul>
<div class="clear"></div>
</div>
I have a navigation menu that works the way I want it to, but when I click on a link that is in the sub-menu it doesn't load the page. It will only start the fadeout effect. I dont know why the link will not load the page. If I turn off jQuery, it works fine. Any idea why this is happening and how to fix it?
var delay = 100;
var fade = 400;
$j(function(){
$j('#access-navi li.sub').toggle(function(){
$j(this).find('ul li a').each(function(i){
$j(this).delay(i*delay).fadeIn(fade);
});
}, function() {
$j('#access-navi li.sub').find('ul li a').fadeOut(fade/2);
});
});
HTML:
<div id="access-navi" class="no-j" role="navigation">
<ul>
<li><a href="/">Home</a></li>
<li class="sub"><a href="#">Code</a>
<ul>
<li><a href="/code/html-css/">Html.Css</a></li>
<li><a href="/code/java/">Java</a></li>
<li><a href="/code/jquery/">jQuery</a></li>
<li><a href="/code/php/">Php</a></li>
</ul>
</li>
</ul>
<div class="clear"></div>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
哦,我在
.sub
中隐藏 LI 而不是 LI A,在我看来,仅隐藏锚点没有意义故障没有发生,但我不确定这是否是副作用或故意行为,因为您将重新加载页面。我使用
inner
变量来缓存此 jQuery 选择器的结果,而不是在下一个切换中再次读取它。如果您有任何问题,请告诉我,我很乐意提供帮助:)
干杯
G.
Oh I'm hiding LIs not LIs A in the
.sub
no point of hiding only anchors IMOThe faiding isn't happening but I'm not sure if that was a side effect or intentional behavior as you'll reload the page. I'm using
inner
variable to cache the result of this jQuery selector instead of reading it once again in the next toggle.Let me know if you'll have any question, I'll gladly help :)
Cheers
G.