我試圖通過@HostListener捕獲焦點事件。 但它不適合我。Angular2 - @HostListener('focus')不起作用
我在下面看到一篇文章。
HTML5 event handling(onfocus and onfocusout) using angular 2
還看見一個plunker出現在文章。
http://plnkr.co/edit/0K1nxX2ltZ4ztfe5uJ6E?p=preview
它的工作在我身上。 但是我改變它如下,它不會工作。
@Component({
selector: 'my-app',
template: `<input name="date" type="text" (focus)="focusFunction()" (focusout)="focusOutFunction()">`
})
export class App {
@HostListener('focus', ['$event.target'])
onFocus(target: any)
console.log("Focus called from HostListener");
target.type = 'date';
}
@HostListener('focusout', ['$event.target'])
onFocusout(target: any) {
console.log("Focus out called from HostListener");
target.type = 'text';
}
focusOutFunction(){
console.log("Focus out called");
}
focusFunction(){
console.log("Focus called");
}
}
關於聚焦,他們都被調用。 但焦點(focusin)只能使用focusFunction,而不能通過@HostListener在onFocus上工作。
我如何使@HostListener與焦點事件一起工作?
謝謝你的回覆。我知道了。我誤解了主持人的角色。 –