Improve this Doc  View Source

ngKeypress

  1. - directive in module ng

Specify custom behavior on keypress event.

Directive Info

Usage

Arguments

Param Type Details
ngKeypress expression

Expression to evaluate upon keypress. (Event object is available as $event and can be interrogated for keyCode, altKey, etc.)

Example

  Edit in Plunker
<input ng-keypress="count = count + 1" ng-init="count=0">
key press count: {{count}}