content/ ディレクトリにあるさまざまなページのコンテンツをロードするために jquery $.ajax を使用して Web サイトを開発しています。また、ハッシュタグを使用して、戻るボタンやリロードなどを有効にしています。
しかし。アクティブなアイテムを含むメイン メニューがあり、1 つのメイン メニュー アイテムの詳細なページ間を移動すると、それがアクティブになります。次に、連絡先などのメイン メニュー項目の 1 つをクリックします。そのため、連絡先メニュー項目がアクティブになります。また、ブラウザの戻るボタンをクリックしても、アクティブなメニュー項目は変わりません。
では、アクティブなメイン メニュー項目の状態を記憶する方法はありますか? メインメニューはコンテナページにあります。
ありがとうございました!
$(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);
}
});