$("#jPlayer").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
flv: 'http://st1.blive.kg/storage/flv7/2/249162.70951.flv'
});
},
swfPath: "/js/Jplayer.swf",
supplied: "flv"
}).jPlayer("play");
我的代码出了什么问题? _ __ _ __ _ __ _ __ _ __
答案 0 :(得分:0)
我认为这就是你想要的:
$("#jPlayer").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
flv: 'http://st1.blive.kg/storage/flv7/2/249162.70951.flv'
});
$(this).jPlayer("play");
},
swfPath: "/js/Jplayer.swf",
supplied: "flv"
});