ExtJS TextField侦听回车事件

将以下代码添加到textfield的属性中。

enableKeyEvents: true,
initEvents: function() {
    var keyPress = function(e){
        if (e.getKey() == e.ENTER) {
            alert(0000)
        }
    };
    this.el.on("keypress", keyPress, this);
}

你可能感兴趣的:(textfield)