保存 AJAX 页面状态
有没有什么方法可以监听 url 中的 hashchanges 并记录在 AJAX 等中使用后退按钮的事件。
使用这样的链接:
<a href="/#!page">Go to page!</a>
和这样的脚本:
<script type="text/javascript">
$(function () {
if (window.location.hash){contentload(window.location.hash);}
$('a').click(function() {
fragment = this.hash;
contentload(fragment);
});
});
function contentload(fragment) {
fragment = fragment.slice(1).replace('!', '')
$('#content').load('http://mysite.com/'+fragment+'?ajax=1');
}
</script>
我需要尝试保存页面的状态,我已经看到了 < a href="http://www.asual.com/jquery/address/" rel="nofollow">jQuery 地址插件 但不知道如何实现这个..
Is there any way to listen for hashchanges in the url and log the event for use of a backbutton in AJAX etc.
Using links like such:
<a href="/#!page">Go to page!</a>
and script like this:
<script type="text/javascript">
$(function () {
if (window.location.hash){contentload(window.location.hash);}
$('a').click(function() {
fragment = this.hash;
contentload(fragment);
});
});
function contentload(fragment) {
fragment = fragment.slice(1).replace('!', '')
$('#content').load('http://mysite.com/'+fragment+'?ajax=1');
}
</script>
I need to try and save the state of the page, Ive seen the jQuery address plugin but have no idea how to implement this..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看这个 jquery 插件
http://benalman.com/projects/jquery-bbq-plugin/
take a look at this jquery plugin
http://benalman.com/projects/jquery-bbq-plugin/
我使用 jQuery Address 插件解决了这个问题
i solved this using the jQuery Address plugin