因此,選擇框不適用於Android設備(例如galaxy s6)。我正在使用離子框架..當我點擊選擇框時什麼也沒有出現,但是如果我點擊它在邊界(這是非常困難的)選項顯示。因爲我知道這是一個離子的錯誤..任何解決方案?謝謝你提前this is a select box imageand this is options menu<select>標籤不適用於離子的某些android設備
<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>
你有試過另一個智能手機嗎? –
是的,在一些智能手機上工作,但在一些沒有。例如:s6或索尼或ect ..我也試過其他手機應用程序寫在離子和他們的選擇不工作在我的智能手機 –
哪些離子版本是你使用1或2 ??? –