admin管理员组文章数量:1341465
I'm designing a web application that has a shared menu for all pages. Due to this i decided to load the contents linked by the menu buttons inside a div, using jquery.
So, I have this:
$("#AddNewProductBtn").click(function() {
$("#content").load("addproduct.html");
});
I want to keep track of the page displayed inside the "#content" div. If the users refreshes the page I want to load the same page in "#content". Is there any way to do this, or is there any workaround?
I saw some websites that use an iframe to load the pages, but when a user clicks a button in the menu the url is also changed. I didn't find any info on how to do that.
Thanks
I'm designing a web application that has a shared menu for all pages. Due to this i decided to load the contents linked by the menu buttons inside a div, using jquery.
So, I have this:
$("#AddNewProductBtn").click(function() {
$("#content").load("addproduct.html");
});
I want to keep track of the page displayed inside the "#content" div. If the users refreshes the page I want to load the same page in "#content". Is there any way to do this, or is there any workaround?
I saw some websites that use an iframe to load the pages, but when a user clicks a button in the menu the url is also changed. I didn't find any info on how to do that.
Thanks
Share edited Oct 9, 2011 at 2:25 Book Of Zeus 49.9k18 gold badges175 silver badges171 bronze badges asked Sep 24, 2011 at 14:54 Dan DinuDan Dinu 33.5k25 gold badges83 silver badges119 bronze badges3 Answers
Reset to default 7Here's a solution for the F5 and CTRL+R
$(document).keydown(function(e) {
if (e.which == 116 || e.keyCode == 82 && e.ctrlKey) { //116 = F5
$("#content").load("addproduct.html");
return false;
}
});
You should append parameter to the hash part of the url (after #), for example domain./index.php#addproduct
Then on document.ready check the value after # and load the corresponding content.
Some plugins like jQuery history use this technique.
Additionally, you can leverage the local storage and cache parts of the code at the browser, so you won't load the content with AJAX call the second time.
Alternatively, instead of using a hash, you can use the HTML5 history API (pushState
, replaceState
, and popstate
). Basically, it's a hash with some improvements (for one, indexable by search engines).
https://developer.mozilla/en/DOM/Manipulating_the_browser_history
http://www.w3/TR/html5/history.html
本文标签: javascriptHow to refresh only a part of the page when F5 or refresh button is pressedStack Overflow
版权声明:本文标题:javascript - How to refresh only a part of the page when F5 or refresh button is pressed - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743675308a2520209.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论