Heim > Artikel > Web-Frontend > AngularJS $window-Fensterobjekt
1. Problemhintergrund
Drucken Sie den Inhalt des Eingabefelds über das $window-Objekt aus
2. Implementierungsquellcode
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>AngularJS之$window窗口对象</title> <script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script> <script> var app = angular.module("winApp",[]); app.controller("winCon",function($window,$scope){ $scope.phone = "15969569556"; $scope.showPhone = function(){ $window.alert("您输入的手机号是:"+$scope.phone); }; }); </script> </head> <body ng-app="winApp"> <p ng-controller="winCon"> <input type="text" id="phone" maxlength="11" ng-model="phone"/> <button ng-click="showPhone();">显示手机号</button> </p> </body> </html>
3. Implementierungsergebnis
Das Obige ist der Inhalt des Fensterobjekts $window in AngularJS Für verwandten Inhalt beachten Sie bitte die chinesische PHP-Website (www.php.cn)!