当我尝试使用BigVideo.js(http://dfcb.github.io/BigVideo.js/)
时出现此错误Uncaught ReferenceError: _V_ is not defined
此错误出现在此行
之后player = _V_(vidEl.substr(1), { 'controls': false, 'autoplay': true, 'preload': 'auto' });
我在rails上运行ruby,这是我用来加载BigVideo的脚本
<script>
jQuery(document).ready(function($){
var BV = new $.BigVideo();
BV.init();
BV.show('http://video-js.zencoder.com/oceans-clip.mp4');
});
</script>
感谢任何帮助!
答案 0 :(得分:1)
看起来像是一个依赖项问题。 检查video.js是否正确包含在您的文档中,以及imagesloaded和jquery ui。