- getCmp方法用来获得一个Ext组件,也就是一个已经在页面中初始化了的Component或其子类的对象.
- getCmp方法其实是Ext.ComponentMgr.get方法的简写形式。
getCmp方法中只有一个参数,也就是组件的id。比如下面的代码:
Ext.onReady(function(){ var h=new Ext.Panel({ id:"h2", title:" ", renderTo:"hello", width:300, height:200}); Ext.getCmp("h2").setTitle("新的标题"); });
在代码中,我们使用Ext.getCmp("h2").来得到id为h2的组件,并调用其setTitle方法来设置该面板的标题。
时间: 2024-10-25 11:40:12