0

我正在尝试构建一个小的单页 wordpress 主题,但努力寻找一种使导航菜单工作的方法。

使用此功能加载页面:http: //pastebin.com/Di5MhS8y。每个页面都根据其 menu_order 显示为我主页的一部分。

如果我将自定义菜单语音链接到我的网站外(尝试使用 www.google.com),则菜单可以正常工作。当我尝试链接到我网站的单个部分时会出现问题。整个页面被重新加载,我又回到了它的顶部。

我认为我应该为每个部分提供一个特定的 ID,并链接到它,但我不确定。任何建议将不胜感激!

4

1 回答 1

0

最好的方法是给每个部分一个 ID。如果你想要干净的 URL,你可以使用 Jquery 创建一个函数

这是我在单页网站中使用的一个

var locationPath = filterPath(location.pathname);
      var scrollElem = scrollableElement('html', 'body', 'document', 'window');
      //console.log(scrollElem);

      $('a[href*=#]').each(function() {
        var thisPath = filterPath(this.pathname) || locationPath;
        if (  locationPath == thisPath
        && (location.hostname == this.hostname || !this.hostname)
        && this.hash.replace(/#/,'') ) {
          var $target = $(this.hash), target = this.hash;
          if (target) {
            //console.log('Target: ' + target + ' offset: ' + targetOffset);
            $(this).click(function(event) {
                var targetOffset = $target.offset().top;
              event.preventDefault();
              $(scrollElem).animate({scrollTop: targetOffset}, 1000, function() {
              //console.log($(scrollElem).scrollTop());
                location.hash = target;
                $(scrollElem).animate({scrollTop: targetOffset}, 0);
              });
            });
          }
        }
      });

      // use the first element that is "scrollable"
      function scrollableElement(els) {
        for (var i = 0, argLength = arguments.length; i <argLength; i++) {
          var el = arguments[i],
              $scrollElement = $(el);
          if ($scrollElement.scrollTop()> 0) {
            return el;
          } else {
            $scrollElement.scrollTop(1);
            var isScrollable = $scrollElement.scrollTop()> 0;
            //console.log(el + ': ' + $scrollElement.scrollTop());
            $scrollElement.scrollTop(0);
            if (isScrollable) {
              return el;
            }
          }
        }
        return 'body';
      }
于 2013-06-07T21:02:53.550 回答