Ajax 后退按钮 jquery - 需要一步一步的完整示例
我需要使用 jquery ajax.load 方法支持后退按钮的帮助。
我已经尝试了几个插件,但我无法让它们中的任何一个工作。
我像这样加载我的内容:
$('.pagination a').click(function(){
var url = $(this).attr('href');
ajaxLoad(url,null,'.container');
return false;
});
注意:ajaxLoad 函数执行 jquery load 方法。
非常感谢您的帮助。
I need help supporting back button with jquery ajax.load method.
I have tried a couple of plugins but i cant get any of them to work.
I am loading my content like this:
$('.pagination a').click(function(){
var url = $(this).attr('href');
ajaxLoad(url,null,'.container');
return false;
});
Note: ajaxLoad function executes the jquery load method.
Many thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 ajax 中的后退按钮,您可以通过 Anchor 保存页面状态,在每次加载中您可以更改 url 锚点(称为页面书签)
例如:
您可以使用 window.location 更改它,
当您查看 url 时,您会在 Gmail 中注意到这一点
阅读有关 ajax 锚点的更多信息
for back button in ajax you can save page status by Anchor where in each load you change the url anchor (as called page bookmarks)
Eg:
you can change it using window.location
you will notice this in Gmail when you look at url
read more about anchors with ajax