Languages
[Edit]
EN

Angular 7 - pass event with button on click

14 points
Created by:
Root-ssh
175460

1. Problem

How to pass event from onclick in html template to type script component in angular 7?

2. Solution

app.component.html

<button (click)="onClickMeWithEvent($event)">Click with event</button>

app.component.ts

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

  onClickMeWithEvent(event) {
    // MouseEvent {isTrusted: true, screenX: 234, ...
    console.log(event);
  }
}
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