私はページ上に多数の要素を持っており、選択した要素の名前を検出する必要があります。Angular2 - フォーカスされたDOM要素の名前を検出します。
例:だから
<select (click)="functionDetectName()" name="test1">
<select (click)="functionDetectName()" name="test2">
<select (click)="functionDetectName()" name="test3">
functionDetectName() {
console.log("What to put here to detect the name of the select element?");
}
、すべきである出力Iがtest1の選択ボックス、コンソールログをクリックしてください:TEST1、TEST2の上に、それが出力TEST2必要があります。
素晴らしい、ありがとう – jjj