當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


AngularJS ng-mouseover用法及代碼示例

AngularJS中的ng-mouseover指令用於在特定HTML元素上發生鼠標懸停事件時應用自定義行為。當鼠標移到特定元素上時,它可用於顯示彈出警報。所有HTML元素都支持它。

用法:

<element ng-mouseover="expression"> Contents... </element>

範例1:當鼠標移到元素上時,此示例使用ng-mouseover指令顯示內容。


<!DOCTYPE html> 
<html> 
      
<head> 
    <title>ng-mouseover Directive</title> 
  
    <script src= 
"https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"> 
    </script> 
  
    <style type="text/css"> 
        .geek { 
            border:1px solid black; 
            width:400px; 
            background-color:green; 
            border-radius:4px; 
            height:20px; 
            color:white; 
        } 
    </style> 
</head> 
  
<body ng-app=""> 
    <center> 
        <h1 style="color:green"> 
            GeeksforGeeks 
        </h1> 
          
        <h2>ng-mouseover Directive</h2> 
          
        <div ng-init="geek=false"> 
          
            <button ng-mouseover="geek=true" 
                    ng-mouseleave="geek=false"> 
                Mouse over me! 
            </button> 
              
            <br><br> 
              
            <div class="geek" ng-show="geek"> 
                GeeksforGeeks is the computer  
                science portal for geeks. 
            </div> 
        </div> 
    </center> 
</body> 
  
</html>

輸出:
將鼠標懸停在元素上之前:
ngmousedown
將鼠標懸停在元素上之後:
ngmousedown

範例2:本示例使用ng-mouseover指令在鼠標移到元素上時顯示警報消息。

<!DOCTYPE html> 
<html> 
      
<head> 
    <title>ng-mouseover Directive</title> 
  
    <script src= 
"https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"> 
    </script> 
</head> 
  
<body  ng-app="app" style="text-align:center"> 
      
    <h1 style="color:green">GeeksforGeeks</h1> 
    <h2>ng-mouseover Directive</h2> 
   
    <div ng-controller="app"> 
        Input:<input type="text" ng-mouseover="alert()"
                ng-model="click" /> 
    </div> 
      
    <script> 
        var app = angular.module("app", []); 
        app.controller('app', ['$scope', function ($scope) { 
            $scope.click = 'geeksforgeeks'; 
            $scope.alert = function () { 
                alert($scope.click); 
            } 
        }]); 
    </script> 
</body> 
  
</html>

輸出:
將鼠標懸停在元素上之前:
ngmousedown
將鼠標懸停在元素上之後:
ngmousedown



相關用法


注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 AngularJS | ng-mouseover Directive。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。