0

我有一個包含textarea的模態視圖,當模態顯示時我希望鍵盤出現。這裏是我的代碼Show on Modal Ionic - AngularJS

$ionicModal.fromTemplateUrl('templates/inputtextarea.html', { 
       scope: $scope, 
       animation: 'slide-in-up' 
     }).then(function(modal) { 
      $scope.modal = modal; 
      $scope.modal.show().then(document.getElementById("textarea").focus()); 
      document.getElementById("textarea").maxLength = 256; 
     }); 

鍵盤顯示在第一時間進行模態顯示,但是當我再次關閉模式,然後拿給更新textarea的文字,鍵盤沒有顯示?爲什麼是第一次顯示,而不是第二次,第三次等......我怎樣才能在每次顯示模態時顯示它?

謝謝

回答

0

嘗試去除模態關閉功能上的模態。這也意味着每次調用模態打開功能時,您都必須調用並創建模態。

$scope.closeModal = function() { 
    $scope.modal.hide(); 
    $scope.modal.remove(); 
}; 
+0

這沒有工作 – iqueqiorio