6个回答
展开全部
API明确说明:
onReady( Function fn, Object scope, boolean override ) : void
Fires when the document is ready (before onload and before images are loaded). Shorthand of Ext.EventManager.onDocum...
Fires when the document is ready (before onload and before images are loaded). Shorthand of Ext.EventManager.onDocumentReady.
Parameters:
fn : Function
The method the event invokes
scope : Object
An object that becomes the scope of the handler
override : boolean
If true, the obj passed in becomes the execution scope of the listener
Returns:void
一般onReady都是给一个ExtJS Application的入口...就相当于C或Java的main函数.一般要求把创建ExtJs的组件放在onReady的方法里.如:
Ext.onReady(function(){
var view = new Ext.Viewport(.....);
})
onReady( Function fn, Object scope, boolean override ) : void
Fires when the document is ready (before onload and before images are loaded). Shorthand of Ext.EventManager.onDocum...
Fires when the document is ready (before onload and before images are loaded). Shorthand of Ext.EventManager.onDocumentReady.
Parameters:
fn : Function
The method the event invokes
scope : Object
An object that becomes the scope of the handler
override : boolean
If true, the obj passed in becomes the execution scope of the listener
Returns:void
一般onReady都是给一个ExtJS Application的入口...就相当于C或Java的main函数.一般要求把创建ExtJs的组件放在onReady的方法里.如:
Ext.onReady(function(){
var view = new Ext.Viewport(.....);
})
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不是必须的。
OnReady 是指页面加载的时候进行的操作,一般可以用来初始化Ext的一些对象,当然也可以不用,而是在被调用的时候再初始化对象,
OnReady 是指页面加载的时候进行的操作,一般可以用来初始化Ext的一些对象,当然也可以不用,而是在被调用的时候再初始化对象,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Ext.onReady(function(){ alert(131); var name=Ext.get("text1"); <script src="../ext-3.2.0/ext-all.js" type="text/javascript"><
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Ext的onReady是用来注册在Ext框架及页面的html代码加载完后,所要执行的函数。调用onReady方法时可以带三个参数,第一个参数是必须的,表示要执行的函数或匿名函数,第二参数表示函数的作用域,第三个参数表示函数执行的一些其它特性,比如延迟多少毫秒执行等,大多数情况下只需要第一个参数即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询