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的文字,鍵盤沒有顯示?爲什麼是第一次顯示,而不是第二次,第三次等......我怎樣才能在每次顯示模態時顯示它?
謝謝
這沒有工作 – iqueqiorio