Home >Web Front-end >JS Tutorial >AngularJS dialog box

AngularJS dialog box

黄舟
黄舟Original
2017-02-18 13:28:431218browse

1. Problem background

AngularJS creates a dialog box and uses $window to implement the dialog box


2. Implementation source code

<!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(&#39;对话框!&#39;)">对话框</button>
		</p>
	</body>
</html>


3. Implementation result

AngularJS dialog box


The above is the content of the AngularJS dialog box. Please pay attention to more related content. PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn