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

时间:2015-10-07 19:01:57

标签: html ios ionic

我正在开发一个Ionic应用程序,由于某些原因,当我使用标签时,“Ok”按钮不会出现 - 请查看下面的屏幕截图。 我正在使用&lt; select&gt;与&lt;选项&gt;内。 对可能发生的事情有任何想法?

1 个答案:

答案 0 :(得分: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();
    }
  });
});

根据this,此代码可以带回您的键盘配件。