Languages
[Edit]
EN

Angular 7 - add simple onclick to button

11 points
Created by:
Root-ssh
175460

Problem:

How to add onclick button from html template 
to component in type script in angular 7?

Solution:

app.component.html

<button (click)="onClickMe()">Click btn</button>

app.component.ts

@Component({
  templateUrl: './app.component.html',
})
export class AppComponent {

  onClickMe() {
    alert('Test click');
  }
}

More complex examples:
https://angular.io/guide/user-input

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Angular 7

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join