我正在创建一个应用程序,我的输入似乎有问题。 当我进入带有输入的屏幕时,我希望它自动具有自动对焦并且键盘出现并且它不会 - 键盘出现一秒然后消失。
这是输入的代码:
<div class="pick-label item item-input">
<i class="ion ion-search" ng-class="{'i-active': selected}"></i>
<input name="from" id="origin" ng-change="getPrediction()" class="search-input ellipsis2-on" type="text" placeholder="From" ng-model="transfer.origin" ng-focus="selected=1" ng-blur="selected=0">
<button ng-click="reset()" class="button-reset" ng-show="transfer.origin.length" type="reset"><i class="ion ion-ios-close"></i></button>
</div>
这是输入页面的样子: image without autofocus and keyboard
它应该是这样的 - 打开自动对焦并出现键盘: image with autofocus and keyboard
有人可以帮忙吗? 谢谢:))