-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
70 lines (70 loc) · 3.75 KB
/
table.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="All About Chinese Numbers. Find Chinese equivalents to English numbers." />
<meta name="keywords" content="Chinese, Java, numbers, numerals, numerology, mathematics, shuzi, ten, one, zero, digits" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Chinese Numbers</title>
<!--<base href="http://www.mandarintools.com/" />-->
<script src="./chineseNumbers.js" type="text/javascript"></script>
</head>
<body bgcolor="LIGHTYELLOW">
<center><h1>Chinese Numbers</h1></center>
<table align="CENTER" width="700" border="1" cellpadding="2">
<tr>
<td align="left" valign="top">
<b>Chinese/English Number(s)</b>
</td>
<td align="left" valign="top">
<b>Results:</b>
</td>
</tr>
<tr>
<td>
<textarea rows="10" cols="37" name="numbers"></textarea>
</td>
<td align="left" valign="top">
<span id="results"> </span>
</td>
</tr>
<tr>
<td colspan="2" align="CENTER">
<button onclick="chineseNumerals.convert(document.getElementsByName('numbers')[0].value, document.getElementsByName('chinesetype')[0].value);">
Convert!</button>
<button onclick="clear();">
Clear</button>
<!--<input type="reset" value="Clear" onclick="document.getElementById('results').innerHTML = ' '; sf();" />-->
</td>
</tr>
<tr>
<td colspan="2">
Output English as:
<select name="englishtype">
<option selected value="arabic">Arabic Numbers</option>
<option value="comma">Arabic Numbers with commas</option>
<option value="words">English Words</option>
</select>
Output Chinese as:
<select name="chinesetype">
<!-- <OPTION SELECTED VALUE="gif"> Picture -->
<option value="trad">Traditional</option>
<option value="simp">Simplified</option>
<option value="pinyin">Pinyin</option>
<option value="formaltrad">Formal trad.</option>
<option value="formalsimp">Formal simp.</option>
</select>
<!-- <br>
<INPUT type="checkbox" name="usegif" value="on">Display Chinese with GIFs -->
</td>
</tr>
<tr>
<td colspan="2">
Type one Chinese or English number per line in the form above and click "Convert".
The equivalent number will appear in the Results area. You can also enter Chinese
by clicking on the Chinese numbers in the table below.
</td>
</tr>
</table>
</body>
</html>