离子2 - 如何保持离子输入可编辑但不显示键盘

时间:2017-06-16 21:40:14

标签: html5 ionic2

我有自己的键盘,我想保持输入可编辑,但我不想打开键盘。

我试过了:

  • 使用readonly:但有了它,我无法专注并粘贴
  • (ionFocus) - 键盘时的keyboard.hide,但我无法选择

有人知道如何保持可编辑,但没有键盘?

enter image description here

1 个答案:

答案 0 :(得分:0)

在离子输入处添加“禁用”属性。

<ion-item>
    <ion-input type="text" disabled="true" placeholder="Input disabled">
</ion-input>

enter image description here