如何使用yui loader第三方lib像jquery?

时间:2012-06-26 05:51:41

标签: jquery yui

这是我的测试代码:

<script type="text/javascript">
YUI({
    modules: {
        'jquery': {
            fullpath: 'script/lib/jquery.min.js'
        },
        'jquery-blockui': {
            fullpath: 'script/lib/jquery.blockUI.js',
            requires: ['jquery']
        }
    }
}).use('jquery-blockui', function(Y, result){
    $.blockUI();
});
</script>

当它运行时,有时它工作,有时不工作。因为在jquery-blockui之后加载了jquery lib。

错误如:

Uncaught ReferenceError: jQuery is not defined
Uncaught TypeError: Object function (a,b){return new e.fn.init(a,b,h)} has no method 'blockUI' 

那么,代码有什么问题?

1 个答案:

答案 0 :(得分:0)

如果您正在使用YUI Loader加载非YUI脚本,那么在您的YUI配置中,您通常需要设置async:false以避免此问题。

尝试YUI 3 Cookbook中的这个食谱:https://github.com/evangoer/yui3-cookbook/blob/master/examples/loading/use_jquery.html