问题描述
|
我隐约记得有人想出解决这个问题的方法,但是我一生都记不起图书馆的名字。基本思想是,通过在页面顶部加载单个小型库,可以在页面底部加载其他脚本的同时获得渲染速度优势,同时能够将要在DOM准备就绪时运行的功能排队。谢谢
解决方法
您是否在考虑Head JS?
您已经阅读了这些书,并在底部放置了SCRIPT SRC标签。好。但是你能做到吗?
// use jQuery on the body of the page even though it is not included yet
head.ready(function() {
$(\"#my\").jquery_plugin();
});
// load jQuery whenever you wish bottom of the page
head.js(\"/path/to/jquery.js\");