11.ng-hide

<!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>
原文地址:https://www.cnblogs.com/mx2036/p/6704593.html