如何为prototypejs实现历史记录插件?
我正在将 AJAX 与 prototypejs 一起使用。现在我想使用浏览器的后退/前进按钮重定向到已经访问过的 AJAX 链接。我找到了这个插件,但我不知道我必须在我的项目中包含哪个文件以及来自哪个文件从哪里开始。我正在使用以下prototypejs代码来处理带有JSON响应的AJAX请求。
function ajaxRequest(url) {
parent.location.hash = url;
new Ajax.Request( url, {
method: 'get',
onSuccess: function( transport ) {
// get json response
var json = transport.responseText.evalJSON( true );
for(var id in json) {
$(id).innerHTML = json[id];
}
},
onFailure: function() {
alert('Error with AJAX request.');
}
});
return false;
}
有什么想法吗?
谢谢
I am using AJAX with prototypejs. Now I want to use browser's back/forward button to redirect to already visited AJAX links. I found this plugin but I don't know which file I have to include in my project and from where to start. I am using following prototypejs code for AJAX requests with JSON response.
function ajaxRequest(url) {
parent.location.hash = url;
new Ajax.Request( url, {
method: 'get',
onSuccess: function( transport ) {
// get json response
var json = transport.responseText.evalJSON( true );
for(var id in json) {
$(id).innerHTML = json[id];
}
},
onFailure: function() {
alert('Error with AJAX request.');
}
});
return false;
}
Any idea ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用真正简单的历史记录。您可以通过隐藏的 iframe 路由 ajax 调用,该 iframe 又从父页面调用它们。当用户按下 BACK 时,它会使 iframe 返回,从而执行之前的 ajax 调用。
You can use Really Simple History. You route your ajax calls through a hidden iframe that in-turn calls them from the parent page. When the user presses BACK it makes the iframe go back, therefore executing the prior ajax call.