jQuery 滑块不会在无铬 YouTube 播放器上设置音量

发布于 2024-12-22 06:58:09 字数 609 浏览 2 评论 0原文

我有一个无铬 YouTube 播放器,我想使用 jQuery 滑块进行控制,但是当我尝试滑动滑块时,它不会设置播放器的音量。在我将 setVolulme(ui.value); 添加到代码中后,它也拒绝移动。关于如何进行这项工作或有什么问题有什么想法吗?

$(function()
    $("#volume").slider({
        orientation: "horizontal",
        range: "min",
        min: 0,
        max: 100,
        value: 75,
        slide: function(event, ui) {
            setVolulme(ui.value);
            $("#amount").val(ui.value);
        }
    });

    $("#amount").val($("#volume").slider("value"));
});

function setVolulme(newVolume) {
    if (ytplayer) {
        ytplayer.setVolulme(newVolume);
    }
}

I have a chromeless YouTube player that I want to control using a jQuery slider but when I try to slide the slider it doesn't set volume for the player. It also refuses to move after I add setVolulme(ui.value); to the code. Any ideas on how to make this work or what is wrong with it?

$(function()
    $("#volume").slider({
        orientation: "horizontal",
        range: "min",
        min: 0,
        max: 100,
        value: 75,
        slide: function(event, ui) {
            setVolulme(ui.value);
            $("#amount").val(ui.value);
        }
    });

    $("#amount").val($("#volume").slider("value"));
});

function setVolulme(newVolume) {
    if (ytplayer) {
        ytplayer.setVolulme(newVolume);
    }
}

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

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

发布评论

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

评论(1

骑趴 2024-12-29 06:58:09

尝试:

function setVolulme(newVolume) {
    if (ytplayer) {
        ytplayer.setVolulme(parseInt(newVolume));
    }
}

Try:

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