5

我正在使用 jquery $.ajax 开发网站来加载我在 content/ 目录中拥有的不同页面的内容。我还使用主题标签来激活后退按钮、重新加载等。

但。我有带有活动项目的主菜单,如果我在一个主菜单项的深度页面之间导航,它就是活动的。然后,我单击其中一个主菜单项,例如联系人。因此,联系人菜单项变为活动状态。如果我点击浏览器后退按钮,活动菜单项不会改变。

那么,有没有办法记住活动主菜单项的状态呢?主菜单位于容器页面上。

谢谢!

$(function(){

        $('.menu a')
            .bind('click',function(e) {
                e.preventDefault();
                $('#content').html('Извините, страница не существует или находится в разработке!');
                $('.menu a').each(function() {$(this).removeClass('activelink');});
                location.hash=$(this).attr('href').match(/(([a-z]*)\W)*/)[2];

                $(this).addClass('activelink');
                return false;
            });

        $('#content').on('click','a',function(e) {
            if (!($(this).hasClass('address') || $(this).hasClass('zoom'))){
            e.preventDefault();
            $('#content').html('Извините, страница не существует или находится в разработке!');
            location.hash=$(this).attr('href').match(/(([a-z]*)\W)*/)[2];
            return false;
            }
            else {
                if ($(this).hasClass('address')) {
                alert('Вы покидаете сайт The House Of Events. Возвращайтесь к нам еще!');
                }
            }
        });

    function hashChange(){
        var page=location.hash.slice(1);
        if (page!=""){
            $.ajax({
                    type: "GET",
                    url: "content/" + page + ".html #sub-content",
                    success: function(data, status) {
                        $('#content').html(data);
                        },
                    error: function fail() {
                        $('#content').html('Error');
                        }
                });
        }
    }

    if ("onhashchange" in window){
        $(window).on('hashchange',hashChange).trigger('hashchange');
    } else { 
        var lastHash='';
        setInterval(function(){
            if (lastHash!=location.hash)
                hashChange();
            lastHash=location.hash;
        },100);
    }
});
4

1 回答 1

0

如果您使用哈希标签,您可以创建一个小技巧。

编辑这些:

$('#content').on('click','a',function(e) {
  if(!($(this).hasClass('address') || $(this).hasClass('zoom'))){
    e.preventDefault();
    $('#content').html('Извините, страница не существует или находится в разработке!');
    var page=location.hash.slice(1).split('/')[0] + '/' + $(this).attr('href').match(/(([a-z]*)\W)*/)[2];
    location.hash=page;
    return false;
  } else {
    if ($(this).hasClass('address')) {
      alert('Вы покидаете сайт The House Of Events. Возвращайтесь к нам еще!');
    }
  }
});

function hashChange(){
  var page=location.hash.slice(1).split('/')[1];
  if(page==='undefined'){
    page=location.hash.slice(1).split('/')[0];
  }
  if(page!=""){
    $.ajax({
      type: "GET",
      url: "content/" + page + ".html #sub-content",
      success: function(data, status) { $('#content').html(data); },
      error: function fail() { $('#content').html('Error'); }
    });
  }
}

您还可以使用 HTML5 历史 API。

把它放在点击事件下(删除位置哈希)

var active=$('.menu a.active').attr('id'); // or var active=$('.menu a.active').text();
history.pushState({menu: active}, "Our events", "events.html");

然后使用后退按钮更改内容onpopstate

window.onpopstate = function(e){
  if(e.state){
    $('.menu a.activelink).removeClass('activelink')
    $('.menu #'+JSON.stringify(e.state.menu).replace(/"/gi,'')).addClass('activelink');
    var url=window.location.pathname;
    $.ajax({ ... })
  }
}

最后,如果您在菜单项中添加了很多类并检查它们,那么这是必须的愚蠢方式.hasClass()

于 2013-06-09T13:26:43.207 回答