我正在学习开发...我无法在事件(keyup.enter)上关闭移动键盘...
有人可以阻止我吗?
我正在使用角度6 +
谢谢!
答案 0 :(得分:0)
您可以检查this
function hideKeyboard(element) {
element.attr('readonly', 'readonly'); // Force keyboard to hide on input field.
element.attr('disabled', 'true'); // Force keyboard to hide on textarea field.
setTimeout(function() {
element.blur(); //actually close the keyboard
// Remove readonly attribute after keyboard is hidden.
element.removeAttr('readonly');
element.removeAttr('disabled');
}, 100);
}