我有下面的代碼指令:Angularjs KEYUP VS按鍵用西裏爾字母
return {
restrict: 'A',
scope: {
fn: '&callback',
value:'=value'
},
link: function (scope, element, attr) {
element.on('keyup', function (event) {
if (event.keyCode >= 1072 && event.keyCode <= 1103) {
var t = scope;
scope.fn();
} else {
event.preventDefault();
}
})
}
}
KeyUp事件不會爲西裏爾字母返回鍵碼,但按鍵事件一樣。如何在keyUp事件中獲取當前的語言或鍵碼?
http://stackoverflow.com/questions/ 10376706 /如何使密鑰碼工作西里爾 - 在這裏回答 – KoIIIeY