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

AngularJS NG-のmouseup指令


マウスクリックが終了した式を実行します。

<div ng-mouseup="count = count + 1" ng-init="count=0">Click me!</div>

<h1>{{count}}</h1>
»それを自分で試してみてください

定義と使用法

ng-mouseupディレクティブは、マウスクリックが終了したときに何をすべきかAngularJSを伝えます。

ng-mouseup AngularJSからの指令は、両方が実行される要素の元れるonmouseupイベントは、上書きされることはありません。

マウスクリックの順序は次のとおりです。

1.マウスダウン

2.のmouseup

3.


構文

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

すべてのHTML要素によってサポートされています。


パラメーター値

Value Description
expression An expression to execute when a mouse click is finished.