阻止退格键导致页面跳转

阻止退格键导致页面跳转,在程序中加入以下代码:

    new Ext.KeyMap(document, [{
            key: Ext.EventObject.BACKSPACE,
            fn: function (key, e) {
                var t = e.target.tagName;
                if (t !== "INPUT" && t !== "TEXTAREA") {
                    e.stopEvent();
                }
            }
        }]);

你可能感兴趣的:(ext)