angularjs-显示HTML元素

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<title></title>
	<link rel="stylesheet" href="">
</head>
<body>
	<div ng-app="myApp" ng-controller="personCtrl">
		<button ng-click="toggle()">显示/隐藏</button>
		<p ng-show="myVar">
			名:<input type="text" ng-model="firstName"><br/>
			姓:<input type="text" ng-model="lastName"><br/>
			<br>
			Full Name:{{firstName + " " + lastName}}
		</p>
	</div>
</body>
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
<script>
	var app = angular.module('myApp',[]);
	app.controller('personCtrl',function($scope){
		$scope.firstName = "John";
		$scope.lastName = "Doe";
		$scope.myVar = true;
		$scope.toggle = function(){
			$scope.myVar = !$scope.myVar;
		}
	});
</script>
</html>
© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容