gpt4 book ai didi

javascript - jQuery.load : any way to load the same page when page is refreshed

转载 作者:行者123 更新时间:2023-11-30 16:12:17 25 4
gpt4 key购买 nike

所以我有一个将页面加载到容器 div 的网站:

function goto(addr) {
$("#content").load(addr);
}

以及执行它的链接

<a href="#" id="aboutus" onclick="goto('page/aboutus.php');">About us</a>

我的问题是,无论何时刷新页面,加载的内容都会重置为默认页面 (page/home.php)。我该怎么做才能加载之前显示的页面?

最佳答案

例如使用本地存储或 session 。本地存储示例:

$(document).ready(function() {

var lastPage = localStorage['lastPage'];
if (!lastPage) { // If user was on any url before we will exectue goto function
goto(lastPage)
}

function goto(addr) {
localStorage['lastPage'] = addr; // Set url to local storage before load page
$("#content").load(addr);
}

});

关于javascript - jQuery.load : any way to load the same page when page is refreshed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36063250/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com