admin管理员组文章数量:1343284
I am loading the page via Ajax. When the user clicks a link the page is being loaded AJAX successfully, but when the user click the back button the pages reloads the initial page. so the scenario is this.
- Load the initial page(index.php)
- User Clicks on the link
- The Page loads Successfully
- Clicks the Back button
- The initial page is now being shown twice.
Here's the mark up.
$(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)
});
});
THis is the markup
<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>
IF you still do not get my question or the scenario
Here's the plete scenario. Initial Page
When the User Clicks the link the selected page loads successfully
When I click the back button the initial page is now doubled
As you can see the "Page1" link is doubled. Is this a browser issue? or my understading of the history api is something lacking or missing? What is the possible solution for this?
I am loading the page via Ajax. When the user clicks a link the page is being loaded AJAX successfully, but when the user click the back button the pages reloads the initial page. so the scenario is this.
- Load the initial page(index.php)
- User Clicks on the link
- The Page loads Successfully
- Clicks the Back button
- The initial page is now being shown twice.
Here's the mark up.
$(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)
});
});
THis is the markup
<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>
IF you still do not get my question or the scenario
Here's the plete scenario. Initial Page
When the User Clicks the link the selected page loads successfully
When I click the back button the initial page is now doubled
As you can see the "Page1" link is doubled. Is this a browser issue? or my understading of the history api is something lacking or missing? What is the possible solution for this?
Share Improve this question asked Dec 25, 2012 at 5:41 KyelJmDKyelJmD 4,73210 gold badges58 silver badges78 bronze badges 1-
It's your error! You are loading the whole page within
<div id="content"></div>
when you go back. – Amit Garg Commented Dec 27, 2012 at 11:30
5 Answers
Reset to default 5 +50If you construct your site to use a similar template for both the main pages as well as the content pages, you could use the container selector syntax for jquery.load:
// See: http://api.jquery./load/
$('#result').load('ajax/test.html #container');
Which in your case would result in:
$('#content').load(State.url + ' #content');
This will have the added benefit that the content url pages are accessible directly as well without adding to much tricks.
This might happen because when you navigate backwards it will fire 'statechange' event, and in your callback you are loading a content of that page with the given url: $('#content').load(State.url);
, so when, say, you are navigating backwards to the /
URL it will load content of that index page and place it inside your container, so your mark up will actually look like this:
<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>
There are several ways to solve this problem - the simplest one is just to detect if user navigated to the initial page and do not load this page through ajax, but insert predefined content.
You can also detect on the server side if the request was made through ajax and then return only the content needed to update your page (which in your case may be <p>Content within this box is replaced with content from supporting pages using javascript and AJAX.</p>
)
$(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)
});
});
Try this js.
I was having similar problem. I simply added $content.html("") to clear the container before loading it via ajax. See snippet relevent section starts with //added by Joel to fix content loading twice on back button
$.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('<', '<').replace('>', '>').replace(' & ', ' & ');
}
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./projects/jquery-scrollto */
$body.removeClass('loading');
$window.trigger(pletedEventName);
// 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
I m using this code, hope this will help you.
//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());
});
本文标签: javascriptHistory API and Historyjs Back Button issueStack Overflow
版权声明:本文标题:javascript - History API and History.js Back Button issue - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743712165a2526123.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论