Я пытаюсь установить mp3 звук в моем JPlayer со следующим кодом:JPlayer setMedia mp3
$("#jquery_jplayer_2").jPlayer({
ready: function() {
$(this).jPlayer("setMedia", {
title: "welcome",
mp3: "C:\Users\test\Desktop\test.mp3"
});
},
cssSelectorAncestor: "#jp_container_2",
swfPath: "/js",
supplied: "mp3",
useStateClassSkin: true,
autoBlur: false,
smoothPlayBar: true,
keyEnabled: true,
remainingDuration: true,
toggleDuration: true,
error: function (event) {
if (event.jPlayer.error.type === $.jPlayer.error.URL) {
alert("Not found");
}
}
});
Это показывает «Не найдено» в окне в то время как я знаю mp3 местоположение правильно.
Похоже, что местоположение должно быть относительным путем. – Stan