It is used to define an expression that execute when a keypress is finished.
Sample coding for ng-keyup directive in AngularJS:
Code Explanation for ng-keyup directive in AngularJS:
AngularJS is distributed as a JavaScript file, and can be added to a HTML page with a <script> tag.
The AngularJS application is defined by ng-app=" ". The application runs inside the <body> tag. It’s also used to define a <body> tag as a root element.
The ng-keydown= “count=count+1” is used to increase the count variable by one, every time a keypressed in the input field is finished.
The ng-init=”count = 0 “ is used to define the initial value of the count variable is “0”.
The {{ count }} is used to dynamically bind the count variable value when the user press the key in the input field.
Sample Output for ng-keyup directive in AngularJS:
The output displays the content “Welcome To Wikitechyyyyyy” in the text box.
The output shows that the content “The keydown count:23” when the user typed the “Welcome To Wikitechyyyyyy” in the text box. Here the variable “count” will increase the value by 1, every time a keypressed in the text box is finished.