我正在使用Ionic为Android和iOS构建混合应用程序。我在应用程序中有一个表单,其中包含四个不同的文本字段:
<input class="form-control" name="name" type="text" ng-model="question.name" input-focus-parent required>
<input class="form-control" name="email" type="email" ng-model="question.email" input-focus-parent required>
<input class="form-control" name="bookingNumber" type="text" ng-model="question.bookingNumber" input-focus-parent>
<textarea class="form-control textarea" name="question" type="text" rows="7" ng-model="question.text" input-focus-parent required></textarea>
如果我在其中一个字段中键入内容,然后按住文本,在iOS中我会看到此菜单“选择|全选|粘贴”。但是我不能选择Select或Select All(没有尝试过Paste)。任何人都知道为什么会这样吗?