<!DOCTYPE html>
<html ng-app="" >
<head lang="en">
<meta charset="UTF-8">
<title>T46-ng-show</title>
<script src="js/angular.js" type="text/javascript"></script>
</head>
<body>
隐藏标题<input type="checkbox" ng-model="tom"/>
<h1 ng-hide="tom">勾上就隐藏</h1>
</body>
</html>