2012-04-17 11 views
0

私はjplayerミュージックプレイヤーを持っていて、これはうまく動くプレイリストを持っています。リンクをクリックすると、最初のmyPlaylist1をmyPlaylist2に変更したいと考えています。javeryとのリンクをクリックするとdivコンテンツが変更されますか?

最初のplaylist-myPlaylist1をdiv #theplayerに読み込む関数は、次のようになります。

$('#theplayer').ttwMusicPlayer(myPlaylist2, { 
     autoPlay:false, 
     description:description, 
     currencySymbol:'Kr ', 
     buyText:'KÖP', 
     tracksToShow:50, 
     jPlayer:{ 
      swfPath:'http://www.mypage.com/music_player/jquery-jplayer' //You need to override the default swf path any time the directory structure changes 
     } 
    }); 

そして、これで私はplaylist2ではなくplaylist1で表示されることを願っています:私は下のmyPlaylist2に上記を変更したいリンクをクリック

$(document).ready(function(){ 
    var description = 'Some description. '; 

    $('#theplayer').ttwMusicPlayer(myPlaylist1, { 
     autoPlay:false, 
     description:description, 
     currencySymbol:'Kr ', 
     buyText:'KÖP', 
     tracksToShow:50, 
     jPlayer:{ 
      swfPath:'http://www.mypage.com/music_player/jquery-jplayer' //You need to override the default swf path any time the directory structure changes 
     } 
    }); 

ページのロードは次のようになり時にロードした再生リスト:

var myPlaylist1 = [ 
    { 
     mp3:'http://www.www.mypage.com/music_player/mix/1.mp3', 
     title:'Love The Way You Lie', 
     artist:'Eminem', 
     buy:'#', 
     price:'12', 
     cover:'http://www.mypage.com/music_player/images/1.jpg' 
    } 
]; 

とするとき、私はこの代わりにプレイリストを変更するリンクをクリックしてください。

var myPlaylist2 = [ 
     { 
      mp3:'http://www.www.mypage.com/music_player/mix/2.mp3', 
      title:'Hey you', 
      artist:'Madonna', 
      buy:'#', 
      price:'12', 
      cover:'http://www.mypage.com/music_player/images/2.jpg' 
     } 


]; 

また、プレイリストを変更する方法について他にご意見がありましたら、

本当にありがとう!

答えて

1

あなたが尋ねるとやるべきID

「pl_changer」と呼ばれ、以下のリンクを作成します。

<script> 

$(document).ready(function(){ 
    $("#pl_changer").click(function(){ 
    $('#theplayer').ttwMusicPlayer(myPlaylist2, { 
     autoPlay:false, 
     description:description, 
     currencySymbol:'Kr ', 
     buyText:'K&Ouml;P', 
     tracksToShow:50, 
     jPlayer:{ 
      swfPath:'http://www.mypage.com/music_player/jquery-jplayer' //You need to override the default swf path any time the directory structure changes 
     } 
    }); 
    }); 
}); 

</script> 
+0

おかげでtehlulz、私はそれかどうかを確認するための機能(.click後にアラートを追加実行され、アラートが表示されますが、再生リストを変更することはありません。 –

関連する問題