播放列表和Jplayer,不能播放另一首歌曲

时间:2013-10-08 04:41:19

标签: javascript php html jplayer

当我使用按钮播放第一首歌时,我无法让Jplayer播放另一首歌。 当我对变量refid进行硬编码时,例如。 myPlaylist.select(3);它完美无缺。但是当我从html / php部分获取值时它不起作用,它播放当前歌曲然后停止。

提前感谢您的帮助。

这是php / html

echo'<td> <a href=""  value="'.$songid.'" class="playitem1"> '. ucfirst($results['song_name']).' </td>';

这是javascipt:

$(document).ready(function(){

    $(".playitem1").click(function(event){
        event.preventDefault();
        playthis($(this).attr("value"));
    })


    function playthis(refid){
        myPlaylist.pause();
        myPlaylist.select(refid);
        myPlaylist.play();
        }


var myPlaylist = new jPlayerPlaylist({

    jPlayer: "#jquery_jplayer_1",

    cssSelectorAncestor: "#jp_container_1"

}, [{
            title:"Cro Magnon Man",
            artist:"The Stark Palace",
            mp3:"http://www.jplayer.org/audio/mp3/TSP-01-Cro_magnon_man.mp3",
            oga:"http://www.jplayer.org/audio/ogg/TSP-01-Cro_magnon_man.ogg",
            poster: "http://www.jplayer.org/audio/poster/The_Stark_Palace_640x360.png"
        },
        {
            title:"Your Face",
            artist:"The Stark Palace",
            mp3:"http://www.jplayer.org/audio/mp3/TSP-05-Your_face.mp3",
            oga:"http://www.jplayer.org/audio/ogg/TSP-05-Your_face.ogg",
            poster: "http://www.jplayer.org/audio/poster/The_Stark_Palace_640x360.png"
        },

]);
});

1 个答案:

答案 0 :(得分:0)

对于那些有兴趣的人我找到了答案。 php发出的$songid是一个字符串而不是整数,所以我不得不在我的javascript中添加parseInt();。 javascript现在看起来像这样:

function playthis(refid){

        refid = parseInt(refid);
        myPlaylist.select(refid);
        myPlaylist.play();
        }