Jump to content
  • 0

Ajax подгрузка + history


RedBrains
 Share

Question

Решил осуществить давнюю мечту - подгрузку данных на ajax и, найдя здешнюю статью (а вот и она), дико обрадовался, но вот беда - при нажатии на ссылку, контент конечно подгружается в нужный div, меняется URL, но через секунду перезагружается вся страница и показывается уже другая (та, которая должна появляться у тех, у кого JS отключен в браузере). Что делать - ума не приложу. JavaScript начал изучать совсем недавно и, наверное, поэтому ничего и не смог сделать.

Ссылку на свой сайт кинуть не смогу, так как делаю на Денвере, но вот мой JS скрипт (измененный оригинальный):

function supports_history_api() {
return !!(window.history && history.pushState);
}

function swapContent(href) {
var req = new XMLHttpRequest();
req.open("GET",
"http://ajax.vk/html/" +
href.split("/").pop(),
false);
req.send(null);
if (req.readyState == 4) {
document.getElementById("content77").innerHTML = req.responseText;
setupHistoryClicks();
return false;
}
return false;
}

function addClicker(link) {
link.addEventListener("click", function(e) {
if (swapContent(link.href)) {
history.pushState(null, null, link.href);
e.preventDefault();
}
}, true);
}

function setupHistoryClicks() {
addClicker(document.getElementById("navig1"));
addClicker(document.getElementById("navig2"));
addClicker(document.getElementById("navig3"));
addClicker(document.getElementById("navig4"));
addClicker(document.getElementById("navig5"));

}

window.onload = function() {
if (!supports_history_api()) { return; }
setupHistoryClicks();
window.setTimeout(function() {
window.addEventListener("popstate", function(e) {
swapContent(location.pathname);
}, false);
}, 1);
}

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

function swapContent(href) {

var req = new XMLHttpRequest();

req.open("GET",

"http://ajax.vk/html/" +

href.split("/").pop(),

false);

req.send(null);

if (req.readyState == 4) {

document.getElementById("content77").innerHTML = req.responseText;

setupHistoryClicks();

return false; <—- return true;

}

return false;

}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy