0

我对编码相当陌生(现在使用 html5 Ccs3 和 JavaScript 玩了大约 2 个月),我正在尝试让 Jplayer CirclePlayer 使用他们的演示文件“demo-05.htm”播放 mp3 格式。

这是我根据在其他帖子中找到的信息更改的代码片段,但我仍然无法让 CirclePlayer 在 IE10 或当前版本的 Google Chrome 中工作,尽管其他 Jplayer 皮肤播放 mp3。

我添加了错误警报,但在最后一次尝试中没有收到。

如果有人可以帮助我解决这个问题,我将不胜感激,因为我对这种编码东西真的很陌生,而且我不断遇到奇怪的异常情况。

如果我可以让它工作,那么我需要弄清楚如何使用 CirclePlayer 在同一页面上播放多个 mp3 文件!

这是到目前为止我一直在使用的代码。所有媒体文件都与 htm 文件处于同一文件夹级别,JS JS 和 Skin 文件夹与 htm 文件处于同一级别,因为我在测试播放器时正在处理演示文件夹。

<script type="text/javascript">
//<![CDATA[

$(document).ready(function(){

var myCirclePlayer = new CirclePlayer("#jquery_jplayer_1",
{
mp3: "001.mp3"
m4a: "Miaow-07-Bubble.m4a",
oga: "Miaow-07-Bubble.ogg"
}, {
supplied: "mp3", "m4a", "oga",
cssSelectorAncestor: "#cp_container_1",
swfPath: "js",
wmode: "window",
keyEnabled: true
errorAlerts: true,
warningAlerts: true
});
});
//]]>
</script>

非常感谢您可以为新手提供的任何帮助!

伊姆乔迪

4

1 回答 1

2

我按照 Su 在他对以下问题的回答中找到的建议让 Jplayer CirclePlayer 播放 mp3,并取出我之前添加的所有额外代码行,以使播放器正常工作。

jplayer-circle-player-not-playing-mp3-file //

$(document).ready(function()
        {
    var myCirclePlayer = new CirclePlayer("#jquery_jplayer_1",
    {
        mp3: "001.mp3"
    }, {
            supplied: "mp3",
            cssSelectorAncestor: "#cp_container_1",
            swfPath: "js",
            wmode: "window"
    });
});
//]]>
</script>

    I removed the m4a: and oga: lines
    I removed the keyEnabled: line
    I removed the errorAlerts: line
    I removed the warningAlerts: line

CirclePlayer 在 IE 10 和 Chrome 中播放音频。

于 2013-08-31T06:37:31.290 回答