x
 
<!DOCTYPE html>
<html>
<script src="https://cdn.staticfile.net/angular.js/1.6.9/angular.min.js"></script>
<body ng-app="">
 
保留 HTML: <input type="checkbox" ng-model="myVar" ng-init="myVar = true">
 
<div ng-if="myVar">
<h1>欢迎</h1>
<p>欢迎来到我的家。</p>
<hr>
</div>
 
<p>当取消选中复选框时,DIV 元素将被移除。</p>
<p>如果选中复选框,DIV 元素将返回。</p>
 
</body>
</html>