6

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

  1. 加载初始页面(index.php)
  2. 用户点击链接
  3. 页面加载成功
  4. 单击返回按钮
  5. 初始页面现在显示两次。

这是标记。

    $(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>

如果您仍然没有得到我的问题或场景

这是完整的场景。初始页面

在此处输入图像描述

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

在此处输入图像描述

当我单击后退按钮时,初始页面现在翻了一番

在此处输入图像描述

如您所见,“Page1”链接翻了一番。这是浏览器的问题吗?还是我对历史 API 的理解是缺少或缺失的?对此有什么可能的解决方案?

4

5 回答 5

5

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

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

在您的情况下会导致:

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

这将具有额外的好处,即内容 url 页面也可以直接访问,而无需添加太多技巧。

于 2012-12-29T21:26:27.810 回答
1

这可能会发生,因为当您向后导航时,它会触发 'statechange' 事件,并且在您的回调中,您正在使用给定的 url: 加载该页面的内容$('#content').load(State.url);,所以当您向后导航到/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>

于 2012-12-27T11:03:34.743 回答
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。

于 2012-12-27T11:42:53.130 回答
0

我遇到了类似的问题。我只是在通过 ajax 加载之前添加了 $content.html("") 来清除容器。请参阅片段相关部分以 //由 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
于 2012-12-30T21:05:45.257 回答
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());
    });
于 2015-03-12T06:47:13.697 回答