因此,选择框不适用于
Android设备(例如galaxy s6).我正在使用离子框架..当我点击选择框时没有出现任何内容,但如果我在边框点击它(这是非常困难的)选项显示.因为我知道这是一个离子的错误..任何解决方案?谢谢你提前
this is a select box image
and this is options menu
<div class="list list-language"> <label class="item item-input item-icon-left item-select"> <div class="input-label"> <i class="flag {{ $root.locale }}"></i> <i class="icon icon-arrow-right-alt"></i> </div> <select ng-model="$root.locale" ng-change="vm.changeLocale($root.locale)" tabindex="-1"> <option ng-selected="$root.locale == 'en'" value="en">{{ 'ENGLISH' | translate }}</option> <option ng-selected="$root.locale == 'ka'" value="ka">{{ 'GEORGIAN' | translate }}</option> <option ng-selected="$root.locale == 'ru'" value="ru">{{ 'RUSSIAN' | translate }}</option> </select> </label> </div>