如何将php数组传递给jplayer

时间:2015-09-20 20:37:51

标签: javascript php arrays jplayer

Good Afternoon All

我在php中创建了一个名为$ tracks []的数组,其中填充了mp3文件的链接

通过主页面中的include语句调用jplayer:include'glayer_script.php';

我可以从阵列的第一个元素播放单个音轨,但不能播放后续音轨

var allsongs = <?php echo json_encode($href); ?>;
$(document).ready(function(){
    $("#jquery_jplayer_1").jPlayer({
        ready: function (event) {
            $(this).jPlayer("setMedia", {
                title: "Player",
                mp3: allsongs,
            }).jPlayer("play");

            ;
        },
        swfPath: "/player/dist/jplayer",
        supplied: "mp3",
        wmode: "window",
        useStateClassSkin: true,
        autoBlur: false,
        smoothPlayBar: true,
        keyEnabled: true,
        remainingDuration: true,
        toggleDuration: true
    });
});

上面的代码没有循环,所以它不会填充列表

我想知道如何使用数组数据为jplayer创建播放列表以完全填充列表

我使用循环在php中创建了数组。有没有类似的方法来提取javascript中的列表数据以使用jplayer?

提前致谢〜

0 个答案:

没有答案