Ajax 深度链接?
我之前制作过 Flex 应用程序深层链接,但现在我想制作 Ajax 应用程序深层链接。
我不知道从哪里开始。
我想我需要一种方法来侦听 url 中的 #hash 何时发生变化并能够读取它。 我想我需要一种方法来更新网址中的#hash。
有谁知道如何做到这一切?
谢谢!
I have made a flex app deep link before but now I want to make an ajax app deep link.
I have no idea where to start.
I assume I need a way to listen for when the #hash in the url changes and be able to read it. And I assume I need a way to update the #hash in the url.
Does anyone know how to do all that?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你走在正确的轨道上。
对于您希望能够链接到的 ajax 页面的每个状态,更改哈希标记:
当页面加载时,您需要检查 window.location.hash 值是否与您的状态之一匹配,以及它是否确实使应用程序进入该状态。 (“监听”哈希标签的变化是页面加载。)
通过这种方式,您的用户可以添加书签并共享状态,从而创建一个更可用的应用程序,因此需要关心它。
You're on the right track.
For each state of the ajax page that you want to be able to link to, change the hash tag:
When the page loads you'll need to check if the window.location.hash value matches one of your states and if it does make the app go to that state. ("Listening" for the change of the hash tag is the page loading.)
This way your users can bookmark and share the states, making for a much more usable app, so props for caring about it.
看看SWFAddress(Flash和Ajax的深层链接)
更新:如果你使用jQuery看看在他们的 jQuery 地址
have a look at SWFAddress (deep linking for both Flash and Ajax)
UPDATE: if you use jQuery look at their jQuery Address
如果您使用 jquery,您可能需要查看以下内容:
使用 jQuery 地址插件进行深度链接
If you're using jquery you might want to have a look at this:
Deep Linking with jQuery Address plugin