为什么jPlayer视频没有播放?

时间:2014-02-10 11:45:53

标签: javascript php html flash jplayer

        $("#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");

我的代码出了什么问题? _ __ _ __ _ __ _ __ _ __

1 个答案:

答案 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"
});