A simple way of of checking out keycodes yourself you could do it like this: $('input').on('keydown', function (e) { $('label').text(e.keyCode); }); ...
確定! 回上一頁