<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app=""> <div ng-mouseover="count = count + 1" ng-init="count=0">鼠標(biāo)移動(dòng)到我這!</div> <h1>{{count}}</h1> <p>該示例在鼠標(biāo)移動(dòng)到 DIV 元素時(shí),計(jì)算變量 "count" 會(huì)自動(dòng)加 1。</p> </body> </html>測(cè)試看看 ?/?
ng-mouseover 指令用于告訴 AngularJS 鼠標(biāo)移動(dòng)到指定的 HTML 元素上時(shí)要執(zhí)行的操作。
ng-mouseover 指令不會(huì)覆蓋元素的原生 onmouseover 事件, 事件觸發(fā)時(shí),ng-mouseover 表達(dá)式與原生的 onmouseover 事件將都會(huì)執(zhí)行。
<element ng-mouseover="expression"></element>
所有的 HTML 元素支持該指令。
值 | 描述 |
---|---|
expression | 鼠標(biāo)移動(dòng)到元素上時(shí)執(zhí)行的表達(dá)式。 |