按钮触发事件的三种表示方法

<script type="text/javascript">
	Ext.onReady(function(){
		new Ext.Button({
					renderTo:Ext.getBody(),
					text:"handler",
					handler:function(){
						alert("******") ;
					}
			}) ;
	}) ;
</script>
 
<script type="text/javascript">
	Ext.onReady(function(){
		new Ext.Button({
					renderTo:Ext.getBody(),
					text:"listeners",
					listeners:{
						"click":function(){
							alert("*******") ;
						}
					}
			}) ;
		
	}) ;
</script>
</script>
 
<script type="text/javascript">
	Ext.onReady(function(){
		var _btn = new Ext.Button({
					renderTo:Ext.getBody(),
					text:"on"
			}) ;
		_btn.on("click" , function(){
					alert("*******") ;
		}) ;
		
	}) ;
</script>

你可能感兴趣的:(JavaScript,ext)