日期:2014-05-16 浏览次数:20322 次
1:Ext.onReady(),Ext.application();
这两个方法是在页面上所有dom家在完毕后自动调用,
eg:Ext.onReady(function(){
alert("hello world!");
});
2:Ext.get("id");
以id为选择器来获取界面的dom节点,返回一个Element对象
3:Ext.select("p");
以标签为选择器来选择元素,得到的是一个元素集合。可以用each方法来对他进行遍历
eg: var ps=Ext.select("p");
ps.each(function(el){
el.highlight();
});
4:得到了dom节点,就要给他天津事件,on("事件类型",function(){});
Ext.get("myButton").on("click",function(){
alert("click me!");
});
Ext.select("p").on("click",function(){
alert("click every one");
});;