lang/ng

AngularJS - 이벤트

C/H 2014. 12. 31. 08:30

AngularJS



AngularJS의 이벤트



AngularJS에서 제공하는 이벤트 지시자
이벤트 지시자명 설명
click ng-click html 요소를 클릭했을 때 표현식이 계산된다.
dbclick ng-dbclick html 요소를 더블클릭했을 때 표현식이 계산된다.
keydown ng-keydown 키보드의 키를 누를 때 표현식이 계산된다. $envent객체를 이용해 keyCode, altKey 값 등을 가지고 올 수 있다.
keypress ng-keypress 키보드의 키를 눌러 실제 문자가 입력됐을 때 표현식이 계산된다. $event 객체를 이용해 keyCode, altKey 값 등을 가지고 올 수 있다.
keyup ng-keyup 키를 뗄 때 표현식이 계산된다. $event 객체를 이용해 keyCode, altKey 값 등을 가지고 올 수 있다.
mousedown ng-mousedown 마우스를 누를 때 표현식이 계산된다.
mouseenter ng-mouseenter 마우스 포인트가 개체 안에 들어올 때 표현식이 계산된다.
mouseleave ng-mouseleave 마우스 포인트가 개체 밖으로 나갈 때 표현식이 계산된다.
mousemove ng-mousemove 마우스 포인트가 개체 위에서 움직일 때 표현식이 계산된다.
mouseover ng-mouseover 마우스 포인트가 개체 위로 들어올 때 표현식이 계산된다.
mouseup ng-mouseup 마우스 포인트가 개체 위에 있는 동안 마우스 버튼을 땔 때 표현식이 계산된다.
change ng-change <input>, <textarea> 요소에거 사용할 수 있다. 값이 변경됐을 때 표현식이 계산된다.
blur mg-blur <input>, <textarea>, <select>, <a> 요소에서 사용할 수 있다. 개체가 포커스를 잃을 때 표현식이 계산된다.
반응형

'lang > ng' 카테고리의 다른 글

AngularJS $scope 계층구조  (0) 2015.01.02
AngularJS MVC  (0) 2015.01.01
AngularJS - 클래스로 유효승 검증  (0) 2014.12.30
AngularJS - 입력항목  (0) 2014.12.29
AngularJS - FormController/NgModelController  (0) 2014.12.25