2012-02-21 2 views
1

私はページと呼ばれるajaxを使用しており、ブラウザの「戻る」と「進む」ボタンを機能させようとしています。 私はベンアルマンのプラグインを使用しようとしましたが、これは最も人気が高いようでしたが、現時点では私のためには機能しません。私は問題が何かを知りたい。私は理解できないコードの中で単純なものなのだから、助けてください。これらは、ハンドラです私のサイトでBen Almanのコードを作成する

<li><a href="#" class="ceni">примерни цени</a></li> 
<li><a href="#" class="karieri">кариери</a></li> 

そして、これはページ全体(アヤックス)リロードせずに表示されるようにページを呼び出して、私のjavascriptです:

$('.ceni').click(function(){    
    $.ajax({ 
    url: 'pages/ceni.php', 
    success: function(response) { 
    $("#pages").html(response); 
    } 
    });  
    }); 



    $('.karieri').click(function(){   
    $.ajax({ 
    url: 'pages/karieri.php', 
    success: function(response) { 
    $("#pages").html(response); 
    } 
    });   
    }); 
を私はあなたのすべてのコード:)が表示されます

そして、これらのベンalmanのコードです:

<script type="text/javascript" language="javascript"> 

$(function(){ 

    // Keep a mapping of url-to-container for caching purposes. 
    var cache = { 
    // If url is '' (no fragment), display this div's content. 
    '': $('.bbq-default') 
    }; 

    // Bind an event to window.onhashchange that, when the history state changes, 
    // gets the url from the hash and displays either our cached content or fetches 
    // new content to be displayed. 
    $(window).bind('hashchange', function(e) { 

    // Get the hash (fragment) as a string, with any leading # removed. Note that 
    // in jQuery 1.4, you should use e.fragment instead of $.param.fragment(). 
    var url = $.param.fragment(); 

    // Remove .bbq-current class from any previously "current" link(s). 
    $('a.bbq-current').removeClass('bbq-current'); 

    // Hide any visible ajax content. 
    $('.bbq-content').children(':visible').hide(); 

    // Add .bbq-current class to "current" nav link(s), only if url isn't empty. 
    url && $('a[href="#' + url + '"]').addClass('bbq-current'); 

    if (cache[ url ]) { 
     // Since the element is already in the cache, it doesn't need to be 
     // created, so instead of creating it again, let's just show it! 
     cache[ url ].show(); 

    } else { 
     // Show "loading" content while AJAX content loads. 
     $('.bbq-loading').show(); 

     // Create container for this url's content and store a reference to it in 
     // the cache. 
     cache[ url ] = $('<div class="bbq-item"/>') 

     // Append the content container to the parent container. 
     .appendTo('.bbq-content') 

     // Load external content via AJAX. Note that in order to keep this 
     // example streamlined, only the content in .infobox is shown. You'll 
     // want to change this based on your needs. 
     .load(url, function(){ 
      // Content loaded, hide "loading" content. 
      $('.bbq-loading').hide(); 
     }); 
    } 
    }) 

    // Since the event is only triggered when the hash changes, we need to trigger 
    // the event now, to handle the hash the page may have loaded with. 
    $(window).trigger('hashchange'); 

}); 

$(function(){ 

    // Syntax highlighter. 
    SyntaxHighlighter.highlight(); 

}); 

</script> 

注:私は専門家か何かではないです、Sできるだけ簡単に話してください。ありがとうたくさん:)

+0

は、ブラウザのJavaScriptコンソールにエラーメッセージがありますか? – sarnold

+0

はい、あなたはここにotを見ることができます。 http://athome.webege.com/[email protected]/ –

+0

毎回自分自身を再生成するように誰にも依頼するのではなく、エラー_here_を含める方が良いでしょう。 (ある時点で、おそらくそのページをダウンして、すべての永遠のためにエラーを失います。) – sarnold

答えて

1

BBQプラグインは、魔法のように前後のボタンを動作させることはありません。 BBQプラグインを使うと、ブラウザのハッシュを変更しやすく(複数のハッシュ値をサポートすることも)簡単にできます。それでも自分自身でハッシュを変更する必要があります。

ここハッシングについて少し続きを読む....

https://developers.google.com/tv/web/articles/location-hash-navigation

+0

素晴らしいリンクのために!! +! – Peru

関連する問題