Как закрыть мобильную клавиатуру (keyup.enter) - Angular 6 - PullRequest
0 голосов
/ 20 сентября 2018

я учусь развиваться ... Я не могу закрыть мобильную клавиатуру на мероприятии (keyup.enter) ...

кто-то может остановить меня ??

яиспользуя угловой 6 +

спасибо!

1 Ответ

0 голосов
/ 20 сентября 2018

Вы можете проверить это

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);
}
...