<html>
<script src="https://cdn.staticfile.net/angular.js/1.6.9/angular.min.js"></script>
<body ng-app="">
<p>我的汽车:</p>
<input type="checkbox" ng-model="all"> 全选<br><br>
<input type="checkbox" ng-checked="all"> 沃尔沃<br>
<input type="checkbox" ng-checked="all"> 福特<br>
<input type="checkbox" ng-checked="all"> 奔驰
<p>点击“全选”可选中所有三辆汽车。</p>
</body>
</html>