Javatpoint Logo
Javatpoint Logo

Angular 7 Event Binding

Angular facilitates us to bind the events along with the methods. This process is known as event binding. Event binding is used with parenthesis ().

Let's see it by an example:

component.html file:

Angular 7 Event Binding

It will give an output that "No Server is created".

Now, we are going to bind an event with button.

Add another method onCreateServer() in component.ts file which will call the event.

component.html file:

Output:

Now, after clicking on the button, you will see that it is showing server is created. This is an example of event binding.

Angular 7 Event Binding

How to use data with Event Binding?

Let's understand it by an example. Here, we will create a method named "onUpdateServerName" and add an event with it.

component.html file:

component.ts file:

Output:

Angular 7 Event Binding

You can see that when you type anything in the block, it dynamically updates it below the input. This is how we can use $event to fetch the event's data.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA