[html] html에서 js 사용
Angular의 html파일은 같은 component의 js 파일과 연동하기 위해 {{}}를 사용한다.
1) 변수사용
ts
name="abc" obj=1
html
<div>{{name}}</div> <button (click)="select{{obj}}()">선택</button>
위 경우
<div>abc</div>
<button (click)="select1()">선택</button>
로 작동한다.
2) javascript 기능
html
<div>{{2+2}}<div>
위 경우
<div>4<div>
로 작동한다.
Author And Source
이 문제에 관하여([html] html에서 js 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@recoder/Angular-html에서-js-사용저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)