-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstraints.html
28 lines (25 loc) · 1.16 KB
/
constraints.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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.9/angular.js"></script>
<script type="text/javascript" src="constraints.js"></script>
<script type="text/javascript" src="example.js"></script>
<title>Constraints test</title>
</head>
<body onload="Test()">
<form name="cf" action="" >
По Цельсию:<input id="c_id" type="text" name="c"/>
По Фаренгейту:<input id="f_id" type="text" name="f"/>
<input id="reset_id" type="button" value="Сбросить"/>
</form>
<form name="sum" action="" >
(<input id="x_id" type="text" name="c"/>
+<input id="y_id" type="text" name="f"/>
)
<!--<input id="z_id" type="text" name="f"/>-->
*<input id="k_id" type="text" name="f"/>
=<input id="h_id" type="text" name="f"/>
<input id="reset1_id" type="button" value="Сбросить"/>
</form>
</body>
</html>