-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
86 lines (78 loc) · 2.27 KB
/
test.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript">
var strs = "";
function OnClick(obj) {
var str = obj.innerText;
var numInput = document.getElementById("numInput");
//如果是=,清空原有显示的内容,以免附加上去。执行eval();得到结果。
if(str=="="){
numInput.value="";
str=eval(strs);
strs = str+"";
}else{
//否则的话,继续将内容拼接到字符串后;
strs += str;
}
//如果点击C的话,将所有内容清空。
if(str=="c"){
numInput.value = "";
strs="";
str="";
}
//如果点击的是运算符的话,只显示运算符。
if(str=="+"||str=="-"||str=="*"||str=="/"){
numInput.value = str;
}else{
//如果前一次点击的是运算符:先将原有显示的内容清空,再将本次点击的显示到屏幕上;
//主要是为了避免出现: +23456 这样的情况。
if(isNaN(numInput.value)){
numInput.value="";
}
//如果一直为数字,继续拼接显示。
numInput.value += str;
}
}
</script>
</head>
<body>
<h1 align="center">计算器</h1>
<table border="1px" cellspacing="2" align="center" bgcolor="lightgray" bordercolor="white">
<tr>
<td colspan="4">
<input type="text" id="numInput" style="text-align: right;"/>
</td>
</tr>
<tr align="center">
<td onclick="OnClick(this)">c</td>
<td onclick="OnClick(this)">/</td>
<td onclick="OnClick(this)">*</td>
<td onclick="OnClick(this)">-</td>
</tr>
<tr align="center">
<td onclick="OnClick(this)">7</td>
<td onclick="OnClick(this)">8</td>
<td onclick="OnClick(this)">9</td>
<td onclick="OnClick(this)" rowspan="2">+</td>
</tr>
<tr align="center">
<td onclick="OnClick(this)">4</td>
<td onclick="OnClick(this)">5</td>
<td onclick="OnClick(this)">6</td>
</tr>
<tr align="center">
<td onclick="OnClick(this)">1</td>
<td onclick="OnClick(this)">2</td>
<td onclick="OnClick(this)">3</td>
<td onclick="OnClick(this)" rowspan="2">=</td>
</tr>
<tr align="center">
<td onclick="OnClick(this)">0</td>
<td onclick="OnClick(this)" colspan="2">.</td>
</tr>
</table>
</body>
</html>