防止音频播放器在页面更改时刷新

发布于 2024-09-30 01:37:08 字数 141 浏览 5 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

对岸观火 2024-10-07 01:37:08

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 .

一曲琵琶半遮面シ 2024-10-07 01:37:08

更新 url 并使用 iframe 的任何方式

也许您需要这样的

main.html

<script type="text/javascript">
    function change_parent_url(url)
    {
    document.location=url;
    }       
</script>

player.html

 after each click (how?): parent.change_parent_url (new_url_here);

我不确定,但我在 weborama.ru 上看到了类似的 iframe 方法:

查找 window.location=,也许有帮助

any way to update the url and use iframe

maybe you need something like this

main.html

<script type="text/javascript">
    function change_parent_url(url)
    {
    document.location=url;
    }       
</script>

player.html

 after each click (how?): parent.change_parent_url (new_url_here);

I am not sure, but I've seen similar, iframe approach on weborama.ru:

look for window.location=, maybe it helps

榕城若虚 2024-10-07 01:37:08

如果您在每个页面更改时更改 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文