当文档在客户端浏览器中加载时很明显,
$(function(){
some code here
});
接手。
假设我有两个 javascript 文件main.js
和style.js
main.js用于功能,style.js用于页面加载时的一些假设样式。我想要这两个文件。我将它们包含在我的index.html中,首先是 style.js ,然后是 main.js,它们都以:
$(function(){
some code here
});
我的问题是,执行顺序document.ready
是什么,main.js和style.js开始并行执行还是顺序执行,一旦style.js完成了它应该执行的操作,然后main.js接管?