我在我的项目中使用 jquery 和 requirejs。最近,我发现了一些我没想到的东西。如果我通过 requirejs 加载 jquery 是什么。DOM 就绪事件总是在 window.onload 事件之后触发。
这是我的例子:http: //jsbin.com/ozusIBE/2
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<img src="http://thejetlife.com/wp-content/uploads/2013/06/Times_Square_New_York_City_HDR.jpg" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.5/require.min.js"></script>
<script>
window.onload = function () {
console.log('window.onload');
};
$(function () {
console.log('document.ready1');
});
requirejs.config({
paths: {
jquery: ['//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min']
}
});
require(['jquery'], function () {
console.log('required moudels have been loaded');
$(function () {
console.log('document.ready2');
});
});
</script>
</body>
</html>
当我加载没有缓存的页面时。控制台中的结果是:
document.ready1
required moudels have been loaded
window.onload
document.ready2
请注意,ready2 总是在 window.onload 之后运行。如果我稍微更改代码,那么它会有所不同。
//do not use requirejs to load jquery
//require(['jquery'], function () {
require([], function () {
console.log('required moudels have been loaded');
$(function () {
console.log('document.ready2');
});
});
结果是:
document.ready1
required moudels have been loaded
document.ready2
window.onload
似乎如果我使用 requrejs 将 jquery 作为 AMD 模块异步加载。DOM 就绪事件是无用的。因为 DOM 就绪事件会在 window.onload 之后触发。
我不知道为什么会发生这种情况,有什么办法可以解决这个问题吗?
更新:
感谢德尔曼。正如 dherman 提到的document.readyState。我进行了小型调查并找到了解决该问题的方法。我已经在 Chrome 和 Firefox 上测试过了。它运作良好。但是,它可能不是一个完美的解决方案,因为所有版本的 IE 都可以在 DOM 完全加载之前具有交互状态。(参考)
这是我更新的示例:http: //jsbin.com/ozusIBE/16
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<img src="http://upload.wikimedia.org/wikipedia/commons/a/ab/NYC_-_Time_Square_-_From_upperstairs.jpg" />
<script src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.9/require.min.js"></script>
<script>
requirejs.config({
paths: {
jquery: ['//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min']
}
});
require(['jquery'], function () {
console.log('required moudels have been loaded');
var init = function(){
console.log('document.ready');
};
if ( document.attachEvent ? document.readyState === 'complete' : document.readyState !== 'loading' ){
init();
}else{
$(function(){ init(); });
}
});
window.onload = function () {
console.log('window.onload');
};
</script>
</body>
</html>