概述
方式一:
<script>
Ext.onReady(function(){
alert('onready');
});
</script>
最简单了,最平常的调用,不用多说
方式二:
<script>
Ext.color = function(){
return {
init:function(){
alert("init")
}
}
}();
Ext.onReady(Ext.color.init,Ext.color);
</script>
通过onReady调用color函数,init为color中的内置,作用是初始化.这种写法比较实用
方式三:
<script>
Ext.onReady(function(){
alert('onready');
});
Ext.color = function(){
return {
init:function(){
alert("init")
}
}
}();
Ext.onReady(Ext.color.init,Ext.color);
</script>
这种是混合型写法,两个onReady都会被调用,调用顺序是看谁在前面.
文章出处:http://www.diybl.com/course/3_program/java/javaxl/20081010/149693.html
最后
以上就是外向大神为你收集整理的关于Ext.onReady的三种调用方法的全部内容,希望文章能够帮你解决关于Ext.onReady的三种调用方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复