0

我正在构建一个使用 MooTools 构建的项目。设计中内置了很多视频,我决定从 VideoJS 迁移到 Flowplayer,因为所有伟大的事件和可定制的外观。

这是我设置标题的方法:

  • 添加 MooTools

    <?php Assets::js(array(
        // Libs
        'readme.js',
        'lib/mootools-yui-compressed.js',
        'lib/...',
        'lib/...',
    ));
    ?>
    
  • 添加 jQuery

    <script
        src="<?=base_url();?>/static/js/lib/jquery190.js">
        jQuery.noConflict();
    </script>
    
  • 添加 Mootools

    <script src="<?=base_url();?>static/js/flowplayer530/flowplayer.js"></script>
    

这是实际加载播放器并让我播放视频的设置。但是当我看 FireBug 时,我仍然看到了这一点。(还不能发布图片)“RefferenceError:jQuery 未定义。”

   slice.call( docElem.childNodes, 0 )[0].nodeType;   ->  jquery190.js (line 3811)

我的观点是,如果没有定义 jQuery,Flowplayer 应该如何运行?

TLDR;播放器工作,但我不喜欢这样的错误发生,我想知道为什么。

提前致谢。

4

0 回答 0