Angular - [ 이벤트 바인딩 실습예제 1 ]

박성원·2020년 12월 2일
0

Angular

목록 보기
11/11

이벤트 바인딩에 대해서 실습을 해보자

결과 화면

<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', // 이 컴포넌트를 쓰기위한 명칭 app-root -> index.html 에서 사용
  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;	// 멤버변수에 버튼에 들어있는 innerText를 가져와서 꽂아준다. 
  }
}
profile
개발 일기장

0개의 댓글

관련 채용 정보