예
마우스 커서가 <div> 요소를 통해 이동할 때 식을 실행합니다 :
<div ng-mouseover="count = count + 1" ng-init="count=0">Mouse over
me!</div>
<h1>{{count}}</h1>
»그것을 자신을 시도 정의 및 사용
ng-mouseover
지시문은 마우스 커서가 특정 HTML 요소를 통해 이동할 때 무엇을 AngularJS와 알려줍니다.
ng-mouseover
요소의 원래 onMouseover와 이벤트를 무시하지 않습니다 AngularJS와의 지시자는, 모두 실행됩니다.
통사론
< element ng-mouseover=" expression "></ element >
모든 HTML 요소에 의해 지원됩니다.
매개 변수 값
Value | Description |
---|---|
expression | An expression to execute when the mouse cursor moves over an element. |