我正在使用 jquery 和 jquery mobile 来开发程序。
$(document).keydown(function(e) {
if ( e.which == 19) { // get the up key
alert("111111");
})
我上网查。据说只有 Android 4.1.1 版本可以支持键盘。否则我需要写一下返回值。
谁知道怎么用jquery设置键盘?
提前致谢!