-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (28 loc) · 800 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js"></script>
<script src="controllers/HomeController.js"></script>
<script src="app.js"></script>
</head>
<body ng-app="AngularApp1">
<form>
<div ng-controller="NameSpace1.HomeController">
<label>
{{firstName}}
</label>
<input type="button" ng-click="show()" value="btn"/>
<br>
<input type="text" ng-model="lastName">
<br/>
<label>
{{lastName}}
</label>
<div ng-show="calcular()" style="width:300px; background-color:gold; display: block;">
{{firstName}}; {{lastName}}
</div>
</div>
</form>
</body>
</html>