Ionic App上的<select>标签中没有出现"Ok"按钮

Bru*_*iro 6 html ios ionic

我正在开发一个Ionic应用程序,由于某些原因,当我使用标签时,"Ok"按钮不会出现 - 请查看下面的屏幕截图.

我使用的是<select><option>里面.

对可能发生的事情有任何想法?

在此输入图像描述

Thi*_*ias 5

你试过这样做吗?

.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
    // for form inputs)
    if(window.cordova && window.cordova.plugins.Keyboard) {

  //Change this to false to return accessory bar 
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false);
    }
    if(window.StatusBar) {
      // org.apache.cordova.statusbar required
      StatusBar.styleDefault();
    }
  });
});
Run Code Online (Sandbox Code Playgroud)

根据这个,这个代码可以带回你的键盘配件.