최신 웹 개발 튜토리얼
 

AngularJS NG-mouseenter 지침


마우스 커서가 <div> 요소를 입력 할 때 식을 실행합니다 :

<div ng-mouseenter="count = count + 1" ng-init="count=0">Mouse over me!</div>

<h1>{{count}}</h1>
»그것을 자신을 시도

정의 및 사용

ng-mouseenter 지시문은 마우스 커서가 특정 HTML 요소를 입력 할 때 무엇을해야 하는지를 AngularJS와 알려줍니다.

ng-mouseenter 요소의 원래 onmouseenter 이벤트를 무시하지 않습니다 AngularJS와의 지시자는, 모두 실행됩니다.


통사론

< element ng-mouseenter=" expression "></ element >

모든 HTML 요소에 의해 지원됩니다.


매개 변수 값

Value Description
expression An expression to execute when the mouse cursor enters an element.