生成一个计算器的网页代码
时间: 2024-03-03 18:49:36 浏览: 49
以下是一个简单的计算器网页代码,你可以根据需要进行修改和扩展:
```html
<!DOCTYPE html>
<html>
<head>
<title>计算器</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
h1 {
text-align: center;
margin-top: 50px;
}
.container {
width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
input[type="button"] {
background-color: #4CAF50;
border: none;
color: #fff;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
}
input[type="text"] {
width: 100%;
padding: 10px;
margin-bottom: 10px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: #f8f8f8;
}
</style>
</head>
<body>
<h1>计算器</h1>
<div class="container">
<input type="text" id="result" placeholder="0">
<table>
<tr>
<td><input type="button" value="1" onclick="insert('1')"></td>
<td><input type="button" value="2" onclick="insert('2')"></td>
<td><input type="button" value="3" onclick="insert('3')"></td>
<td><input type="button" value="+" onclick="insert('+')"></td>
</tr>
<tr>
<td><input type="button" value="4" onclick="insert('4')"></td>
<td><input type="button" value="5" onclick="insert('5')"></td>
<td><input type="button" value="6" onclick="insert('6')"></td>
<td><input type="button" value="-" onclick="insert('-')"></td>
</tr>
<tr>
<td><input type="button" value="7" onclick="insert('7')"></td>
<td><input type="button" value="8" onclick="insert('8')"></td>
<td><input type="button" value="9" onclick="insert('9')"></td>
<td><input type="button" value="*" onclick="insert('*')"></td>
</tr>
<tr>
<td><input type="button" value="C" onclick="clearResult()"></td>
<td><input type="button" value="0" onclick="insert('0')"></td>
<td><input type="button" value="/" onclick="insert('/')"></td>
<td><input type="button" value="=" onclick="calculate()"></td>
</tr>
</table>
</div>
<script>
function insert(value) {
document.getElementById("result").value += value;
}
function clearResult() {
document.getElementById("result").value = "";
}
function calculate() {
var result = eval(document.getElementById("result").value);
document.getElementById("result").value = result;
}
</script>
</body>
</html>
```
该网页包含一个文本框和一个表格,表格中有数字和运算符按钮。用户可以点击按钮来输入数字和运算符,然后按“=”按钮来计算结果。
阅读全文