1. Problemhintergrund
AngularJS erstellt ein Dialogfeld und verwendet $window, um das Dialogfeld zu implementieren
2. Implementierungsquellcode
<!DOCTYPE html> <html ng-app="winApp"> <head> <meta charset="UTF-8"> <title>AngularJS之对话框</title> <script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script> <script> var app = angular.module("winApp",[]); app.factory("$show",function($window){ return{ show:function(content){ $window.alert(content); } }; }); var control = function($scope,$show){ $scope.tanClick = function(message){ $show.show(message); } } app.controller("winCon",control); </script> </head> <body> <p ng-controller="winCon"> <button ng-click="tanClick('对话框!')">对话框</button> </p> </body> </html>
3. Implementierungsergebnis
Das Obige ist der Inhalt des AngularJS-Dialogs Box, weitere verwandte Inhalte Bitte beachten Sie die chinesische PHP-Website (www.php.cn)!