这是我的测试代码:
<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'
那么,代码有什么问题?