AngularJS之$window窗口对象

前端之家收集整理的这篇文章主要介绍了AngularJS之$window窗口对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、问题背景

通过$window对象打印出输入框的内容


2、实现源码

<!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">
		<div ng-controller="winCon">
			<input type="text" id="phone" maxlength="11" ng-model="phone"/>
			<button ng-click="showPhone();">显示手机号</button>
		</div>
	</body>
</html>

3、实现结果

原文链接:https://www.f2er.com/angularjs/148980.html

猜你在找的Angularjs相关文章