我正在尝试使用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
});
});
答案 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(