-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathif.html
22 lines (22 loc) · 891 Bytes
/
if.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en" ng-app="sample"> <!--angular의 ng-app을 사용하고 현재 태그 하위에 {{1+1}}이 계산이 되어 진다-->
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="app.js"></script>
<style>
form input#name {
color: darkblue;
}
</style>
</head>
<body class="container" ng-controller="mainCtrl">
ok: <input class="form-control" ng-model="checked" type="checkbox">
<br>
if is ok we can move to
<button class="btn btn-default" ng-if="checked">NEXT</button><!--ng-if는 태그의 참거짓에 따라 태그가 사라지고 생기고 한다.-->
</body>
</html>