如何实现完整的ajax导航?
我有一个问题。
我访问了一个网站:http://currenthiphop.com/。当我单击链接时,地址栏上的链接更改为 http://currenthiphop.com/#!/
+ 链接。 (如 Twitter、Faceboook...)
但是,在属性 href
中,没有 #!
。为什么 ?
是 ajax 导航不是吗? 我怎样才能做这样的事情?
谢谢
I have a question.
I visited a site : http://currenthiphop.com/. And when I clicked on a link, the link on adress bar change to http://currenthiphop.com/#!/
+ link. (like Twitter, Faceboook...)
However, in the attribut href
, there is no #!
. Why ?
Is is a ajax navigation isn't ?
How can I do something like this ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它是 location.hash。就像 Facebook 一样,它是用 javascript 制作的。它用于避免使用 GET 并重新加载页面。
基本示例 - 在 php 页面和 JavaScript 的文件夹中,您有一些图像(1.png、2.png)。 png...等)。就像 Facebook(前段时间)一样,如果您复制链接并粘贴它,js 会检查是否有任何哈希值并将您重定向到所需的图像。代码很旧,而且不是最好的。
It is location.hash. Like in Facebook it is made with javascript. It is used to avoid use of GET and reload the page.
basic example - in the folder where are the php page and JavaScript you have some images (1.png, 2.png ... etc). Like Facebook (some time ago) if you copy the link and paste it, js checks if there is any hash and redirects you to the wanted image. The code is old, and it is not the best.
这应该让你开始。
http://jsfiddle.net/f6dBV/
编辑 - jsFiddle实际上没有显示location.hash 位。这是我的网站: http://jfcoder.com/test/hash.html
This oughta get you started.
http://jsfiddle.net/f6dBV/
EDIT - jsFiddle is actually not showing the location.hash bit. Here it is on my website: http://jfcoder.com/test/hash.html
感谢贾里德·法里什。
我有一个额外的补充,可以让您在刷新页面后获取活动内容。
Thanks to Jared Farrish.
I have one little extra addition that will allow you to get the active content after you refresh the page.