播放音乐时浏览页面
vkontakte.ru 上有一个新功能(我打赌 facebook 也有同样的功能,但不确定)。您浏览页面的同时,播放器会在后台不间断地播放音乐。这怎么可能?
There's a new feature on vkontakte.ru (I bet facebook has the same, not sure though). You browse pages while player keeps playing music at the background without interruption. How is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Ajax(因此他们只是在页面中加载其他内容,但不会完全重新加载)。
直到不久前,您只能更改 url 中的哈希值(# 之后),但现在,使用新的历史记录 API,可以更改整个 url(基本上使用 PushStates): https://developer.mozilla.org/en/DOM/window.history
The use Ajax (so they just load something else in the page but they don't reload it completely).
Until not long ago, you could only change the hash (after the #) in the url but now, with the new history API, it is possible to change the whole url (with pushStates basically) : https://developer.mozilla.org/en/DOM/window.history
检查 pjax ,它很容易使用。也许这正是您所需要的。
Check pjax , it's easy to use. May be that is exactly what you need.