0
テンプレートは2つのタブを持つ 'タブ'です。最初のタブでは、私はinput
フィールドを持っています。アプリが開始されてinput
フィールドがフォーカスされているときに動作していますが、2番目のタブに切り替えてから最初のタブに戻ったときに、入力がフォーカスを失います。入力フィールドに焦点を合わせます
タブ2から1に移動したときにフォーカスを合わせたいと思います。要素の外側をクリックすると、フォーカスも失われます。私は実際にはinput
フィールドに常に焦点を当ててほしい。
.directive('focusMe', function($timeout) {
return {
scope: { trigger: '=focusMe' },
link: function(scope, element) {
scope.$watch('trigger', function(value) {
if(value === true) {
//console.log('trigger',value);
//$timeout(function() {
element[0].focus();
scope.trigger = true;
//});
}
});
}
};
});
<label class="item item-input" focus-me>
<input type="number" class="somett" ng-model="code" ng-model-options="{ debounce: 100 }" placeholder="Ready" ng-change="load(code) " focus-on="focusTextInput" autofocus>
</label>
ありがとうございます – Mark