-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest3.html
More file actions
33 lines (31 loc) · 954 Bytes
/
Copy pathtest3.html
File metadata and controls
33 lines (31 loc) · 954 Bytes
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
<!DOCTYPE html>
<html ng-app="">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.8/angular.min.js"></script>
<body>
<table style="width:30%">
<tr>
<td>Name</td>
<td><input id="t1" type="text" ng-model = "N"></td>
</tr>
<tr>
<td>Profession</td>
<td><input id="t2" type="text" ng-model = "P"></td>
</tr>
<tr>
<td>Company</td>
<td><input id="t3" type="text" ng-model = "C"></td>
</tr>
<tr>
<td><br></td>
</tr>
<tr>
<td>
<button ng-click = "message = N + ' works as a ' + P + ' at ' + C " >click</button>
</td>
</tr>
</table>
<p>{{message}}</p>
</body>
</head>
</html>