防止音频播放器在页面更改时刷新
我正在 WordPress 中创建一个网站。我里面有一个音乐播放器,因为它是为音乐艺术家准备的。但我希望玩家在用户浏览网站时继续玩游戏。我不想使用 iframe,因为我希望更新 url,以便可以为页面添加书签。或者有什么办法可以更新 url 并使用 iframe 吗?
I'm creating a website in wordpress. I have a music player in it as its for a music artist. But I want the player to continue playing while the users move through the website. I dont want to use iframe as i want the url updated so the page can be bookmarked. Or is there any way to update the url and use iframe?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
WordPress 论坛上有人询问 同样的问题。
最好的方法(技术上)确实是使用支持在不刷新页面的情况下浏览网站的 CMS,因此使用 AJAX,正如@jonny 所建议的那样。
jango.com 似乎是这样做的,另一个我不记得的网站也是这样做的。
如果您通过 AJAX 加载每个页面,并且您关心搜索排名,那么可能会有一个缺点。
Somebody on the Wordpress forum asked the same question.
The best way (technically) to do this is indeed to use a CMS that supports surfing the site without page-refreshes, so using AJAX, as @jonny suggested.
jango.com seems to do this as does another site I can't remember.
If you load every page via AJAX, there's probably gonna be a drawback if you care about search-ranking .
也许您需要这样的
main.html
player.html
我不确定,但我在 weborama.ru 上看到了类似的 iframe 方法:
查找
window.location=
,也许有帮助maybe you need something like this
main.html
player.html
I am not sure, but I've seen similar, iframe approach on weborama.ru:
look for
window.location=
, maybe it helps如果您在每个页面更改时更改 URL 片段(
#
后面的部分),则地址栏中的 URL 始终可以被添加为书签。如果您使用框架执行此操作(可能是最简单的方法),则每次页面加载都会更新父文档的 URL 片段。如果传入链接设置了此片段,则您打开的框架不是主页,而是所请求的内容页面。If you change the URL fragment (the part after the
#
) on each page change, the URL in the address bar can always be bookmarked. If you do this with a frame (probably the easiest way), every page load would update the URL fragment of the parent document. If an incoming link has this fragment set you open the frame not with the homepage, but with the requested content page.