如何为prototypejs实现历史记录插件?

发布于 2024-12-10 15:51:02 字数 731 浏览 0 评论 0原文

我正在将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

﹎☆浅夏丿初晴 2024-12-17 15:51:02

您可以使用真正简单的历史记录。您可以通过隐藏的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文