gpt4 book ai didi

ajax - 如何使用 AJAX 获取 "bookmark"页面或内容?

转载 作者:行者123 更新时间:2023-12-04 14:06:47 25 4
gpt4 key购买 nike

如何为使用 AJAX 获取的页面或内容“添加书签”?

看起来如果我们只是将细节添加到“ anchor ”中,然后,使用路由甚至在 PHP 代码或 Ruby on Rails 的 route.rb 中捕获该部分,然后显示内容或页面,看起来很容易因此? (显示整个页面或部分内容)

那么它可以很简单吗?看起来这就是facebook的做法。还有什么其他好的方法可以做到吗?

最佳答案

更新:现在有 HTML5 History API (pushState, popState) 弃用了 HTML4 hashchange功能。 History.js提供跨浏览器兼容性和 optional hashchange HTML4 浏览器的后备。

要存储页面的历史记录,最流行且功能齐全/受支持的方式是使用 hashchanges。这意味着假设您来自 yoursite/page.html#page1yoursite/page.html#page2您可以跟踪该更改,并且因为我们使用的是哈希值,所以可以通过书签和后退和前进按钮来获取它。

您可以使用 jQuery History 项目找到绑定(bind)到哈希更改的好方法
http://www.balupton.com/projects/jquery-history

它还有一个功能齐全的 AJAX 扩展,允许您轻松地将 Ajax 请求集成到您的状态/哈希中,从而将您的网站转换为功能齐全的 Web 2.0 应用程序:
http://www.balupton.com/projects/jquery-ajaxy

他们都在他们的演示页面上提供了很好的文档来解释正在发生的事情和正在发生的事情。

这是一个使用 jQuery History 的示例(取自演示站点):

// Bind a handler for ALL hash/state changes
$.History.bind(function(state){
// Update the current element to indicate which state we are now on
$current.text('Our current state is: ['+state+']');
// Update the page"s title with our current state on the end
document.title = document_title + ' | ' + state;
});

// Bind a handler for state: apricots
$.History.bind('/apricots',function(state){
// Update Menu
updateMenu(state);
// Show apricots tab, hide the other tabs
$tabs.hide();
$apricots.stop(true,true).fadeIn(200);
});

还有一个 jQuery Ajaxy 示例(取自演示站点):
        'page': {
selector: '.ajaxy-page',
matches: /^\/pages\/?/,
request: function(){
// Log what is happening
window.console.debug('$.Ajaxy.configure.Controllers.page.request', [this,arguments]);
// Adjust Menu
$menu.children('.active').removeClass('active');
// Hide Content
$content.stop(true,true).fadeOut(400);
// Return true
return true;
},
response: function(){
// Prepare
var Ajaxy = $.Ajaxy; var data = this.State.Response.data; var state = this.state;
// Log what is happening
window.console.debug('$.Ajaxy.configure.Controllers.page.response', [this,arguments], data, state);
// Adjust Menu
$menu.children(':has(a[href*="'+state+'"])').addClass('active').siblings('.active').removeClass('active');
// Show Content
var Action = this;
$content.html(data.content).fadeIn(400,function(){
Action.documentReady($content);
});
// Return true
return true;

如果你想得到查询字符串参数(所以 yoursite/page.html#page1?a.b=1&a.c=2 )你可以使用:
$.History.bind(function(state){
var params = state.queryStringToJSON(); // would give you back {a:{b:1,c:2}}
}

因此,请查看这些演示链接以查看它们的实际运行情况,以及所有安装和使用详细信息。

关于ajax - 如何使用 AJAX 获取 "bookmark"页面或内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3123260/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com