ext监听事件方法[初级篇]

Diana ·
更新时间:2024-11-13
· 719 次阅读

<script>function a(){alert('some thing');}Ext.onReady(function(){
    Ext.get("btnAlert").addListener("click",a);//这里监听
           //或者使用
           Ext.get("btnAlert").on("click",a);//效果相同
     });</script>
<input id="btnAlert" type="button" value="alert框" />



方法 事件 ext

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章