dojo/domReady
1、使用:
require(["dojo/domReady!"], function(){ // will not be called until DOM is ready });
dojo/domReay是作为插件使用的,需要在后面加个感叹号,不需要返回值作为回调函数的参数。
dojo/domReady! 使得require的回调函数会在,dom加载完之后执行,但不会等待其他require或者dojo.require加载的模块加载完了再执行。此时需要使用dojo/ready.