ExtJs 구성 요소의 이벤트 처리

2007 단어 htmlEXTjs
이벤트는 Ext.EventManager 객체에 의해 관리되며 브라우저 W3C 표준 이벤트 객체 이벤트에 대응하여 Ext는 Ext.EventObject 이벤트 객체를 봉인합니다.이벤트 처리를 지원하는 클래스(또는 인터페이스)는 Ext.util입니다.Observable, 이 클래스를 계승하는 구성 요소나 클래스는 대상에 이벤트 처리 및 응답 기능을 추가합니다.
example01
 



ExtJS




function   a()
{
Ext.MessageBox.alert("hello","Hello,easyjf open source");
}






example02: 이 코드는 문서를 불러올 때 btnAlert의 onclick에 값을 부여합니다. 단추 btnAlert의 onclick 이벤트 응답 함수를 a로 명확하게 가리킵니다.



ExtJS




function   a()
{
Ext.MessageBox.alert("hello","Hello,easyjf open source");
}
window.onload = function(){
	document.getElementById("btnAlert").οnclick=a;
}






example03



ExtJS




function a(){
alert('some thing');
}
Ext.onReady(function(){
Ext.get("btnAlert").addListener("click",a);
});






좋은 웹페이지 즐겨찾기