请帮帮我! 这是我的代码:
this.rez[str].each(
function(v){
var li = new Element('li', {
'html': v[1],
'cl_id': v[0],
styles: {
backgroundColor: 'white',
},
events: {
'mousemove': function(){this.focus(li)}.bind(this),
'click' : function(){
alert('click);
}.bind(this),
'keydown' : function(event){
alert('keydown');
}.bind(this)
}
}).inject(this.blockul);
}, this
);
事件“keydown”不起作用。如何解决?