このスクリプトがあり、「pr_id」という名前の曲を再生したいのですが、パスにどのように書き込むことができますか?ありがとう!
$(document).ready(function(){
var pr_id = document.getElementById('id')
$("#jquery_jplayer_1").jPlayer({
ready: function (){
$(this).jPlayer("setMedia", {
mp3:"/sounds/[pr_id].mp3"
});
},
swfPath: "js",
supplied: "mp3",
wmode: "window"
});
});