我创建了一个虚拟键盘作为一个项目来学习,除其他外,jQuery:http ://brianfryer.1.ai/virtual-keyboard/index.html
单击屏幕上的键时,其相关字符将添加到文本区域。
但是,当按下键盘键时,什么也没有发生——相关的字符应该被添加到文本区域。
我遇到的问题是clickedKey
变量。设置clickedKey
为静态字符(即'm')将产生所需的结果(字符被添加到文本区域),但我认为为每个键创建一大块代码并不是一个好主意。
$(document).ready(function() {
// Find the textarea, and save it to var screen
var screen = $("#screen > textarea");
$('li').not('.modifier, .short-key').click(function() {
// Find the first <span>, get the contents, trim away the whitespace, and save it to var txt
var txt = $(this).find(':first-child').text().trim();
// Add the trimmed txt to the textarea
screen.val(screen.val() + txt);
});
var clickedKey = $(document).keydown( function(event){ String.fromCharCode(event.keyCode); });
KeyboardJS.bind.key(
// Physical keyboard input
clickedKey,
// onDownCallback
function() {
// Make the on-screen key flash
$('#' + clickedKey).addClass('hover');
// If the textarea has focus...
if ($('#screen > textarea').is(':focus')) {
// ...do nothing
} else {
// Add the trimmed txt from the first span to the textarea
var txt = $('.keys').find('#' + clickedKey).children(':first').text().trim();
screen.val(screen.val() + txt);
}
},
function() {
// After a key is clicked, remove the .hover class
setTimeout(function() {
$('.keys').find('#' + clickedKey).removeClass('hover');
}, 100);
}
);
});
我正在使用keyboard.js进行键绑定。