当我尝试使用 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>
任何帮助表示赞赏!