历史API和History.js后退按钮问题

时间:2012-12-25 05:41:24

标签: javascript jquery ajax history.js

我正在通过Ajax加载页面。当用户单击链接时,页面正在成功加载AJAX,但是当用户单击后退按钮时,页面将重新加载初始页面。所以场景就是这样。

  1. 加载初始页面(index.php)
  2. 用户点击链接
  3. 页面成功加载
  4. 点击后退按钮
  5. 初始页面现在显示两次。
  6. 这是标记。

        $(function() {
                // Prepare
                var History = window.History; // Note: We are using a capital H instead of a lower h
                if (!History.enabled) {
                    // History.js is disabled for this browser.
                    // This is because we can optionally choose to support HTML4 browsers or not.
                    return false;
                }
    
                // Bind to StateChange Event
                History.Adapter.bind(window, 'statechange', function() { // Note: We are using statechange instead of popstate
                    var State = History.getState();
                    $('#content').load(State.url);
                });
    
                $('a').click(function(evt) {
                    evt.preventDefault();
                    History.pushState(null, $(this).text(), $(this).attr('href'));
                    alert(State.url)
                });
            });
    

    这是标记

       <div id="wrap">
                <a href="page1.html">Page 1</a>
            </div>
    
            <div id="content">
                <p>Content within this box is replaced with content from
                    supporting pages using javascript and AJAX.</p>
            </div>
    

    如果你仍然没有得到我的问题或情景

    这是完整的方案。 初始页面

    enter image description here

    当用户点击链接时,所选页面成功加载

    enter image description here

    单击后退按钮时,初始页面现在加倍

    enter image description here

    正如您所看到的,“Page1”链接加倍。这是一个浏览器问题吗?或者我对历史api的不足之处是缺乏或缺失的东西?对此有什么可行的解决方案?

5 个答案:

答案 0 :(得分:5)

如果构建站点以对主页面和内容页面使用类似的模板,则可以使用jquery.load的容器选择器语法:

// See: http://api.jquery.com/load/
$('#result').load('ajax/test.html #container');

在您的情况下会导致:

$('#content').load(State.url + ' #content');

这将带来额外的好处,即内容网址页面也可以直接访问,而不会增加太多技巧。

答案 1 :(得分:1)

可能会发生这种情况,因为当您向后导航时会触发'statechange'事件,并且在您的回调中,您正在使用给定的网址加载该网页的内容:$('#content').load(State.url);,所以当您正在导航时向后转到/网址,它会加载该索引页面的内容并将其放入您的容器中,因此您的标记实际上将如下所示:

<div id="wrap">
        <a href="page1.html">Page 1</a>
</div>

<div id="content">
    <div id="wrap">
        <a href="page1.html">Page 1</a>
    </div>

    <div id="content">
        <p>Content within this box is replaced with content from
            supporting pages using javascript and AJAX.</p>
    </div>
</div>

有几种方法可以解决这个问题 - 最简单的方法就是检测用户是否导航到初始页面并且不通过ajax加载此页面,而是插入预定义的内容。 您还可以在服务器端检测是否通过ajax发出请求,然后仅返回更新页面所需的内容(在您的情况下可能是<p>Content within this box is replaced with content from supporting pages using javascript and AJAX.</p>

答案 2 :(得分:0)

 $(function() {
            // Prepare
            var History = window.History; // Note: We are using a capital H instead of a lower h
            if (!History.enabled) {
                // History.js is disabled for this browser.
                // This is because we can optionally choose to support HTML4 browsers or not.
                return false;
            }

            // Bind to StateChange Event
            History.Adapter.bind(window, 'statechange', function() { // Note: We are using statechange instead of popstate
                var State = History.getState();
                if(State.url==document.URL){
                    $.ajax({
                          url: State.url,
                          success: function(data) {
                                        var dom_loaded=$(data);
                                        $('#content').html($('#content',dom_loaded).html());
                          }
                        });


                }else{
                    $('#content').load(State.url);
                }
            });

            $('a').click(function(evt) {
                evt.preventDefault();
                History.pushState(null, $(this).text(), $(this).attr('href'));
                alert(State.url)
            });
        });

试试这个js。

答案 3 :(得分:0)

我遇到了类似的问题。我只是添加了$ content.html(“”)来清除容器,然后通过ajax加载它。请参阅片段相关部分 //由Joel添加以在后退按钮

上修复内容加载两次
$.ajax({
            url: url,
            success: function (data, textStatus, jqXHR) {
                // Prepare
                var 
                    $data = $(documentHtml(data)),
                    $dataBody = $data.find('.document-body:first'),
                    $dataContent = $dataBody.find(contentSelector).filter(':first'),
                    $menuChildren, contentHtml, $scripts;

                // Fetch the scripts
                $scripts = $dataContent.find('.document-script');
                if ($scripts.length) {
                    $scripts.detach();
                }

                // Fetch the content
                contentHtml = $dataContent.html() || $data.html();
                if (!contentHtml) {
                    document.location.href = url;
                    return false;
                }

                // Update the menu
                $menuChildren = $menu.find(menuChildrenSelector);
                $menuChildren.filter(activeSelector).removeClass(activeClass);
                $menuChildren = $menuChildren.has('a[href^="' + relativeUrl + '"],a[href^="/' + relativeUrl + '"],a[href^="' + url + '"]');
                if ($menuChildren.length === 1) { $menuChildren.addClass(activeClass); }

                // Update the content
                $content.stop(true, true);
                //added by Joel to fix content loading twice on back button
                $content.html("");
                //end added by joel
                $content.html(contentHtml).ajaxify().css('opacity', 100).show(); /* you could fade in here if you'd like */

                // Update the title
                document.title = $data.find('.document-title:first').text();
                try {
                    document.getElementsByTagName('title')[0].innerHTML = document.title.replace('<', '&lt;').replace('>', '&gt;').replace(' & ', ' &amp; ');
                }
                catch (Exception) { }

                // Add the scripts
                $scripts.each(function () {
                    var $script = $(this), scriptText = $script.text(), scriptNode = document.createElement('script');
                    scriptNode.appendChild(document.createTextNode(scriptText));
                    contentNode.appendChild(scriptNode);
                });

                // Complete the change
                if ($body.ScrollTo || false) { $body.ScrollTo(scrollOptions); } /* http://balupton.com/projects/jquery-scrollto */
                $body.removeClass('loading');
                $window.trigger(completedEventName);

                // Inform Google Analytics of the change
                if (typeof window._gaq !== 'undefined') {
                    window._gaq.push(['_trackPageview', relativeUrl]);
                }

                // Inform ReInvigorate of a state change
                if (typeof window.reinvigorate !== 'undefined' && typeof window.reinvigorate.ajax_track !== 'undefined') {
                    reinvigorate.ajax_track(url);
                    // ^ we use the full url here as that is what reinvigorate supports
                }
            },
            error: function (jqXHR, textStatus, errorThrown) {
                document.location.href = url;
                return false;
            }
        }); // end ajax

答案 4 :(得分:0)

我正在使用此代码,希望这对您有帮助。

   //get the contents of #container and add it to the target action page's #container
    $('#container').load(url+' #container',function(){
        $('#container').html($(this).find('#container').html());
    });