如何将焦点设置为另一个输入?

时间:2015-07-23 08:32:23

标签: typescript angular

我需要能够在发生某些事件时将焦点切换到输入元素。我如何在Angular 2中做到这一点?

例如:

<input (keyUp)="processKeyUp($event)"/>
<input (focusme)="alert('i am focused')"/>

我想在第一个按下某个键时聚焦第二个输入框。我想我需要在代码段中使用自定义事件(focusme),但我不知道在哪里或如何声明它,以及是否使用@Directive注释,或者以某种方式将其定义包含在组件中。简而言之,我很难过。

更新

忘了提,我知道我可以通过在html中使用局部变量来做到这一点,但我希望能够从组件中做到这一点,并且我希望能够在触发{{1时执行复杂逻辑事件,以便监听它的控件可以确定它是否适合它们。 谢谢!

4 个答案:

答案 0 :(得分:30)

您可以将第二个输入作为变量传递给第一个

例如

<强> HTML

<!-- We pass focusable as a parameter to the processKeyUp function -->
<input (keyup)="processKeyUp($event, focusable)"/>

<!-- With #focusable we are creating a variable which references to the input -->
<input #focusable /> 

稍后在你的js / ts

@Component({
  selector: 'plunker-app'
})
@View({
  templateUrl: 'main.html'
})
class PlunkerApp {

  constructor() {
  }

  processKeyUp(e, el) {
    if(e.keyCode == 65) { // press A
      el.focus();
    }
  }
}

el 是原始元素,因此您可以在其上使用纯JavaScript。

这是一个plnkr,所以你可以看到它正常工作。

我希望它有所帮助。

答案 1 :(得分:18)

对于DOM元素的操作总是尝试使用Directives。在这种情况下,您可以编写简单的指令。

为了从指令访问DOM,我们可以通过指令构造函数中的 ElementRef 注入我们的宿主DOM元素的引用。

constructor(@Inject(ElementRef) private element: ElementRef) {}

对于绑定值的变化检测,我们可以使用 ngOnChanges 实时循环方法。

protected ngOnChanges() {}

所有其他事情都很简单。

简单解决方案

// Simple 'focus' Directive
import {Directive, Input, ElementRef} from 'angular2/core';
@Directive({
    selector: '[focus]'
})
class FocusDirective {
    @Input()
    focus:boolean;
    constructor(@Inject(ElementRef) private element: ElementRef) {}
    protected ngOnChanges() {
        this.element.nativeElement.focus();
    }
}

// Usage
@Component({
    selector : 'app',
    template : `
        <input [focus]="inputFocused" type="text">
        <button (click)="moveFocus()">Move Focus</button>
    `,
    directives: [FocusDirective]
})
export class App {
    private inputFocused = false;
    moveFocus() {
        this.inputFocused = true;
        // we need this because nothing will 
        // happens on next method call, 
        // ngOnChanges in directive is only called if value is changed,
        // so we have to reset this value in async way,
        // this is ugly but works
        setTimeout(() => {this.inputFocused = false});
    }
}

使用EventEmitter解决方案

使用 setTimeout(()=&gt; {this.inputFocused = false})解决问题; 我们可以绑定事件源的指令 - EventEmitter,或者绑定到Observable。以下是EventEmitter用法的示例。

// Directive
import {Directive, EventEmitter, Input, ElementRef} from 'angular2/core';

@Directive({
    selector: '[focus]'
})
class FocusDirective {
    private focusEmitterSubscription;   
    // Now we expect EventEmitter as binded value
    @Input('focus')
    set focus(focusEmitter: EventEmitter) {
        if(this.focusEmitterSubscription) {
            this.focusEmitterSubscription.unsubscribe();
        }
        this.focusEmitterSubscription = focusEmitter.subscribe(
            (()=> this.element.nativeElement.focus()).bind(this))
    }    
    constructor(@Inject(ElementRef) private element: ElementRef) {}
}

// Usage
@Component({
    selector : 'app',
    template : `
        <input [focus]="inputFocused" type="text">
        <button (click)="moveFocus()">Move Focus</button>
    `,
    directives: [FocusDirective]
})
class App {
    private inputFocused = new EventEmitter();
    moveFocus() {
        this.inputFocused.emit(null);    
    }
}

这两种解决方案都可以解决您的问题,但其次是性能更好,看起来更好。

答案 2 :(得分:9)

实际上你不需要为此编写任何TS代码(我使用的是另一个答案的例子):

<input (keyup.enter)="focusable.focus()"/>
<input #focusable /> 

答案 3 :(得分:3)

设置焦点 - Angular 2/5

<input type="text" [(ngModel)]="term2" #inputBox>

import { Component, ViewChild, ElementRef } from '@angular/core';

@Component({
  selector: 'app-general',
  templateUrl: './general.component.html',
  styleUrls: ['./general.component.scss']
})
export class GeneralComponent {

  @ViewChild("inputBox") _el: ElementRef;

  setFocus() {
    this._el.nativeElement.focus();
  }
}

用于设置对负载的关注

ngAfterViewInit() {
    this._el.nativeElement.focus();
  }

您可以相应地更新此逻辑以进行按键操作。

More Info