gpt4 book ai didi

javascript - 在 Ionic 上禁用 native 键盘

转载 作者:行者123 更新时间:2023-11-29 19:22:27 25 4
gpt4 key购买 nike

很明显像this这样的解决方案在 Android 5.1.* 上无法按预期工作(KB 闪烁(快速打开和关闭))。

.directive('disableKeyboard', function ($timeout, $window) {
var linker = function (scope, element, attrs) {

if (!$window.cordova || !$window.cordova.plugins.Keyboard) {
return;
}

element.bind('focus click',
function (e) {
e.preventDefault();
$timeout($window.cordova.plugins.Keyboard.close, 0);
}
);
};

return {
restrict: 'A',
link: linker,
}
})

ionic forum没有给出有意义的解决方案。有什么建议么?请注意:我想避免使用 cordova.plugins.Keyboard.close。谢谢。

最佳答案

disabled 属性添加到您的输入标签中,例如

<input type="text" name="lname" disabled>

注意:这可能会更改输入标签的背景颜色,但您可以使用 css 更改它。

关于javascript - 在 Ionic 上禁用 native 键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32573350/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com