最新のWeb開発のチュートリアル
 

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.