Disable Backspace key for SPA (single Page Application)
Ext.EventManager.on(window, 'keydown', function (e, t) {
if (e.getKey() == e.BACKSPACE && (!/^input$/i.test(t.tagName) || t.disabled || t.readOnly)) {
e.stopEvent();
}
});
以為自己什麼都會,事實上是什麼都只會一點點的雜工罷了
0 個意見:
張貼留言
訂閱 張貼留言 [Atom]
<< 首頁