Dojo特效(翻译)】的更多相关文章

http://dojotoolkit.org/documentation/tutorials/1.10/effects/index.html In this tutorial, we will explore the effects that Dojo provides, which allow us to jazz up your page or application! 在本教程中,我们会探索dojo提供的特效功能,这可以使我们的Web页面或应用更加生动活泼. Getting Started…
In this tutorial, we will be exploring dojo/on and how Dojo makes it easy to connect to DOM events. We will also explore Dojo's publish/subscribe framework: dojo/topic. 在本教程中,我们将会探讨dojo/on模块,使用该模块可以更简单的关联DOM事件.我们也会探讨dojo的publish和dubcribe框架:dojo/topic…
http://dojotoolkit.org/documentation/tutorials/1.10/start/index.html 我怎么开始学习DOJO?文档在哪?我如何获取支持和培训?我应该是用DOJO的哪个版本?为什么我必须使用Web服务?我该如何避免常见的错误?我该如何提交问题?我应该如何为dojo贡献自己的力量,加入开发者团队?这些问题和答案在本教程都会介绍. 资料 The Dojo web site offers 3 primary documentation sections…
http://dojotoolkit.org/documentation/tutorials/1.10/modern_dojo/index.html 你可能已经不用doio一段时间了,或者你一直想保持你基于dojo1.6的老代码在1.10下能够正确运行,但却不知道应该怎么做.你一直在听说“AMD”和"baseless"等概念,但却不知道如何开始学习这些,这篇教程会帮你了解这些. 开始 从dojo的1.7版本开始,dojo Toolkit有了重大的变化,并朝着更加先进的架构模式发展.do…
http://dojotoolkit.org/documentation/tutorials/1.10/dojo_config/index.html dojoConfig对象(原来是djConfig对象),我们可以通过该对象设置dojo toolkit的选项和默认行为.在本教程,我们将探讨如何在我们的代码中使用dojoConfig. 介绍 dojoconfig对象(在dojo 1.6版本之前为djcofig)是用来在页面或Web应用中配置dojo的主要方式.该对象作为一个全局对象被模型加载器引用…
延迟,异步调用 官网地址:http://dojotoolkit.org/reference-guide/1.9/dojo/Deferred.html require(["dojo/Deferred", "dojo/dom", "dojo/on", "dojo/domReady!"], function(Deferred, dom, on){ function asyncProcess(){ var deferred = new…
官网地址:http://dojotoolkit.org/reference-guide/1.10/dojo/aspect.html after() 定义:after(target, methodName, advisingFunction, receiveArguments); 意义:在target的methodName方法之后执行advisingFunction方法. define(["dojo/aspect"], function(aspect){ aspect.after(doj…
官方地址: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(["…
官方地址:http://dojotoolkit.org/reference-guide/1.10/dojo/json.html#dojo-json require(["dojo/json", "dojo/dom", "dojo/on", "dojo/domReady!"], function(JSON, dom, on){ on(dom.byId("convert"), "click",…
官方地址:http://dojotoolkit.org/reference-guide/1.10/dojo/string.html#dojo-string require(["dojo/string"], function(string){ var a = string.pad("pad me", 10); var b = string.rep("dup", 10); var c = string.substitute("${repla…