具有子菜单淡入淡出效果的导航,链接损坏 - jQuery

发布于 2024-10-12 08:53:05 字数 1071 浏览 2 评论 0原文

我有一个按我想要的方式工作的导航菜单,但是当我单击子菜单中的链接时,它不会加载页面。它只会启动淡出效果。我不知道为什么链接无法加载页面。如果我关闭 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

策马西风 2024-10-19 08:53:05
$j(function(){
    var inner="";
    $j('#access-navi .sub > a').toggle(function(){
        inner=$j(this).parent().find('ul li');
        inner.each(function(i){
            $j(this).delay(i*delay).fadeIn(fade);
        });
    },function(){
        inner.fadeOut(fade/2);
    });
}); 

哦,我在 .sub 中隐藏 LI 而不是 LI A,在我看来,仅隐藏锚点没有意义
故障没有发生,但我不确定这是否是副作用或故意行为,因为您将重新加载页面。我使用 inner 变量来缓存此 jQuery 选择器的结果,而不是在下一个切换中再次读取它。

如果您有任何问题,请告诉我,我很乐意提供帮助:)

干杯

G.

$j(function(){
    var inner="";
    $j('#access-navi .sub > a').toggle(function(){
        inner=$j(this).parent().find('ul li');
        inner.each(function(i){
            $j(this).delay(i*delay).fadeIn(fade);
        });
    },function(){
        inner.fadeOut(fade/2);
    });
}); 

Oh I'm hiding LIs not LIs A in the .sub no point of hiding only anchors IMO
The 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文