jwplayer - 未捕获的TypeError:对象#<object>没有方法&#39; setup&#39; </object>

时间:2013-12-07 06:07:57

标签: javascript jquery video jwplayer

我正在尝试使用jwplayer。我之前用过它;我当时没有这个问题,但现在我收到了这个错误。它说对象没有方法设置。

这是我的HTML代码:

<div id="#here-will-be-the-video">Loading Video...</div>

这是JS代码:

$(document).ready(function(){
    console.log($('#here-will-be-the-video'));
    jwplayer('here-will-be-the-video').setup({
        file: "http://youtu.be/QtmyQRH3DEo",
        image: "http://placehold.it/500x300",
        width: 500,
        height: 300
    });
});

1 个答案:

答案 0 :(得分:2)

应该是

<div id="here-will-be-the-video">Loading Video...</div>

<div id="#here-will-be-the-video">Loading Video...</div>

然后

  jwplayer('here-will-be-the-video').setup(

点击此链接http://jsfiddle.net/ramp/nF7Mw/