实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<div ng-app="" ng-init="mySwitch=true">
6
<p>
7
<button ng-disabled="mySwitch">点我!</button>
8
</p>
9
<p>
10
<input type="checkbox" ng-model="mySwitch"/>按钮
11
</p>
12
<p>
13
{{ mySwitch }}
14
</p>
15
</div> 
16
17
<script src="https://apps.bdimg.com/libs/angular.js/1.3.9/angular.min.js"></script>
18
19
</body>
20
</html>
21