如何打开一个页面并激活特定的JS?

发布于 2024-12-06 07:11:06 字数 334 浏览 2 评论 0原文

我在网站上有一个 jplayer,它嵌入几个播放列表。 为了激活这些播放列表,我使用了这个功能:

jQuery("#playlist_french_baroque").click(function() {
...
});

这非常有效。

现在,在同一网站的其他页面上,我想加载特定的播放列表。 这不起作用,因为我使用 click() 函数。

我应该为此做什么?

非常感谢。

I have a jplayer on a website, which embeds several playlists.
To activate these playlists, I use this function :

jQuery("#playlist_french_baroque").click(function() {
...
});

This works very well.

Now, on other pages on the same website I want to load a specific playlist.
This doesn't work because I use the click() function.

What should I do for that ?

Thank you very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

玩世 2024-12-13 07:11:07

如果您需要在没有用户干预的情况下加载某些内容,您可以使用 jQuery 提供的 .ready() 方法(请参阅 docs):

$(document).ready(function() {
  // do whatever you need
});

相当于:

$(function() {
 // do whatever you need
});

DOM准备好后执行代码。

If what you need is to load something without user intervention, you can use the .ready() method provided by jQuery (see docs):

$(document).ready(function() {
  // do whatever you need
});

Which is equivalent to:

$(function() {
 // do whatever you need
});

The code is executed after the DOM is ready.

烟花肆意 2024-12-13 07:11:06

在您的 /listen 页面上添加此代码,

$(function () {
    if (window.location.hash) {
        $(window.location.hash).click();
    }
});

这将在页面加载时执行,并检查是否已设置哈希值,然后使用该哈希值调用元素上的单击处理程序。

On your /listen page add this code

$(function () {
    if (window.location.hash) {
        $(window.location.hash).click();
    }
});

This will execute when the page loads, and check if the hash has been set then call the click hander on the element with that hash.

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