이벤트 바인딩에 대해서 실습을 해보자
결과 화면

<h1>{{ title }}</h1>
<button (click)="click($event)">Angular</button>
<button (click)="click($event)">jQuery</button>
<button (click)="click($event)">Angular</button>
선택한 버튼 라벨 값:
<span>{{ result }}</span>
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
})
export class AppComponent {
title = '이벤트 바인딩 실습예제1';
result = null;
click(event: any): void {
console.log(event.target.innerText);
this.result = event.target.innerText;
}
}