jQuery + Ajax 哈希/历史等等
我正在尝试使用 jQuery 中的 URL 哈希来控制 Ajax 中的历史记录并使链接/页面可添加书签。我已经尝试了几乎所有插件,但似乎都无法正常工作,所以我实际上没有任何代码示例。但我愿意接受任何建议、信息、教程等。
我试图将其合并到其中的一个页面的不同之处在于,我有一个 jQuery 动画驱动的启动/加载页面,这也是所有页面的同一页面内容将被加载到。
..在此链接上,我想绕过所有启动/加载动画并直接根据哈希值/字符串(在本例中为#home)加载内容。
我已经尝试解决这个问题有一段时间了,非常感谢任何帮助,谢谢!
I am trying to get a handle on using URL hashes in jQuery to control history in Ajax and make links / pages book-markable. I have tried almost every plug-in out there, and I cant seem to get any to work properly, so I dont have any code examples really. But I am open to any suggestions, information, tutorials, etc.
The difference on one of the pages I am trying to incorporate this into is that I have a jQuery animation driven splash/loading page, which is also the same page that all of the content will be loaded into.
..and on this link, I want to by-pass all of the splash / loading animation and directly load the content based on the hash values / string (in this case, #home).
I've been trying to figure this one out for a while, any help is greatly appreciated, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么你有什么问题吗?设置哈希标签或处理哈希的更改?
当然,设置哈希值只是将哈希值放入链接中的问题,例如
Link
但是我猜这不是你的问题。要实际对哈希执行某些操作,您必须有一个侦听器函数,例如每 100 毫秒检查一次哈希是否发生更改并采取相应的操作。一个简单的函数可以像这样:
该(未经测试的)函数将每 100 毫秒检查一次哈希是否已更改,如果已更改,则通过 Ajax 更新页面。
此函数也适用于页面加载,因此如果用户通过诸如
www.voidsync.com/2010/#images
之类的链接登陆页面,该函数将自动加载页面“图像”。所以历史和书签是有效的。希望有帮助,只是问你是否还有别的意思。
So what are you having problems with? Setting the hash tag or handling the change of the hash?
Of course setting the hashes is simply a question of putting the hashes in links, for example
<a href="www.voidsync.com/2010/#page">Link</a>
but I'm guessing that's not your problem.To actually do something with the hash, you must have a listener function that checks for example every 100ms has the hash changed and acts accordingly. A simple function could go like this:
That (untested) function would check every 100ms if the hash has changed, and if it has, then updates the page via Ajax.
This function also works on page load, so if user lands on the page with a link such as
www.voidsync.com/2010/#images
, the function will load the page 'images' automatically. So history and bookmarking works.Hope that helps, just ask if you meant something else.
根据塔图的回答,我只是改变了一些东西来使这项工作适合我。
它保留了历史记录,因此后退和前进按钮效果很好。
这就是我所拥有的,
然后只需将一些哈希分配给链接 href 属性即可;
这不是一个完整的重写,只是基本上在同一件事上添加了一些 if 语句,但它可能会帮助某人。
Based off Tatu's answer, I just changed a few things to make this work for me.
It keeps a history, so back and forward buttons work good.
Here's what I have,
Then simply assign some hash's to the links href attribute;
It's not a whole rewrite, just basically added some if statements to the same thing, but it may help someone out.