(39)将按钮绑定到操作

//4:将按钮绑定到操作
Ext.onReady(function(){
	var panel=new Ext.Panel({
		title:'键盘绑定对象示例',
		width:'260px',
		renderTo:Ext.getBody(),
		html:'<div style="width:200px;height:160px;padding:10px">'+
		'<div id="id01" style="background-color:#3399FF;height:20px;">'+
		'请点击我,然后<br>按键盘"enter"键</div></div>'
	});
	
	var el=Ext.get("id01");//绑定事件
	var nav=new Ext.KeyNav(el,{
		"left":function(e){
			alert('向左的按键被按下了');
		},
		"right":function(e){
			alert('向右的按键被按下了');
		},
		"enter":function(e){
			alert('回车键被按下了');
		},
		scope:el
	});
		nav.enable();
});

你可能感兴趣的:((39)将按钮绑定到操作)