标签:style blog http color cti html
官方地址:http://dojotoolkit.org/reference-guide/1.10/dojo/domReady.html#dojo-domready
dom加载完成后,执行。
require(["dojo/domReady!"], function(){ // will not be called until DOM is ready });
通常dojo/domReady没有也不需要设定一个返回值,而且,它是被放在加载模块数组的最后加载。
require(["dojo/dom", "dojo/query", "dojo/on", "dojo/domReady!"], function(dom, query, on){ // ... });
dojo 官方翻译 dojo/domReady 版本1.10,布布扣,bubuko.com
dojo 官方翻译 dojo/domReady 版本1.10
标签:style blog http color cti html
原文地址:http://www.cnblogs.com/tiandi/p/3830476.html