我正在使用引导输入。
它依赖于这个 jQuery 代码来工作:
el.on('keyup', doSomething() )
在 Windows 上的 Chrome 上它工作正常。在 Android 上的 Chrome 上没有。keyup 事件永远不会被触发。它绑定的元素肯定有焦点。
这似乎是最近的事态发展。
Chrome 28.0.1500.64 Android 4.1.2 SGP321 Build/10.1.1.A.1.307
谢谢
——贾斯汀·威利
我今天早些时候遇到了同样的问题。android chrome怎么能不支持这些关键事件!我假设您现在已经找到了解决方法,但这是我现在想出的解决方法。
function newKeyUpDown(originalFunction, eventType) {
return function() {
if ("ontouchstart" in document.documentElement) { // if it's a touch device, or test here specifically for android chrome
var $element = $(this), $input = null;
if (/input/i.test($element.prop('tagName')))
$input = $element;
else if ($('input', $element).size() > 0)
$input = $($('input', $element).get(0));
if ($input) {
var currentVal = $input.val(), checkInterval = null;
$input.focus(function(e) {
clearInterval(checkInterval);
checkInterval = setInterval(function() {
if ($input.val() != currentVal) {
var event = jQuery.Event(eventType);
currentVal = $input.val();
event.which = event.keyCode = (currentVal && currentVal.length > 0) ? currentVal.charCodeAt(currentVal.length - 1) : '';
$input.trigger(event);
}
}, 30);
});
$input.blur(function() {
clearInterval(checkInterval);
});
}
}
return originalFunction.apply(this, arguments);
}
}
$.fn.keyup = newKeyUpDown($.fn.keyup, 'keyup');
$.fn.keydown = newKeyUpDown($.fn.keydown, 'keydown');