全部好,
我在IPAD上使用Jplayer,我已经实现了Jplayer插件,它正在与所有浏览器一起使用但是使用IPAD它显示如下错误消息。
“错误提示: - 检查媒体URl是否有效 上下文: - 无法加载媒体URl“
下面给出了任何人可以帮助我的代码片段。 (我已经用2.4进行了测试,同样的错误也存在于那里)。
以下是关于Jpalyer的功能
startAudio: function() {
var _this = this;
_this.initJPlayerHandlers();
var solution_type = "flash, html";
if($.browser.msie && parseInt($.browser.version, 10) > 8) {
solution_type = "html, flash";
}
_this.jplayer_el.jPlayer({
ready: function() {
$(this).jPlayer(
"setMedia", {
mp3: "/wd/mca.mp3?BID=" + MCA.singletons.self.bid
}).jPlayer("play");
},
supplied: "mp3",
swfPath: "js",
solution: solution_type,
preload: "none"
});
},
我正在使用IOS 7的IPAD4和IOS7的IPad。这个问题只出现在IPAD4上。
答案 0 :(得分:0)