1
我有這個腳本,我想播放名稱爲'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"
});
});
你要找的術語是「字符串連接」。 – meagar 2013-03-13 13:22:38