ボタンを押してイベントをトリガーする3つの表現方法
1090 ワード
<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>