例
執行表達式時,鼠標光標移動在一個<div>元素:
<div ng-mouseover="count = count + 1" ng-init="count=0">Mouse over
me!</div>
<h1>{{count}}</h1>
試一試» 定義和用法
在ng-mouseover
指令告訴AngularJS當鼠標光標移動在特定HTML元素做什麼。
在ng-mouseover
在AngularJS指令將不會覆蓋元素的原始onmouseover事件,都將被執行。
句法
< element ng-mouseover=" expression "></ element >
所有HTML元素的支持。
參數值
Value | Description |
---|---|
expression | An expression to execute when the mouse cursor moves over an element. |