HTML实现简单计算器

  1 <!DOCTYPE html>
  2 <html>
  3     <meta name="content-type" content="text/html; charset=UTF-8">
  4     <head>
  5         <title>Calculator</title>
  6
  7         <!--将按键内容以字符串形式存储在文字框中当按钮为“=”时,调用eval方法计算结果然后将结果输出文字框中-->
  8
  9 <script type="text/javascript">
 10     var numresult;
 11     var str;
 12
 13     function onclicknum(nums) {
 14
 15         str = document.getElementById("nummessege");
 16         str.value = str.value + nums;
 17
 18     }
 19
 20     function onclickclear() {
 21
 22         str = document.getElementById("nummessege");
 23         str.value = "";
 24
 25     }
 26
 27     function onclickresult() {
 28
 29         str = document.getElementById("nummessege");
 30         numresult = eval(str.value);
 31         str.value = numresult;
 32
 33     }
 34 </script>
 35
 36     </head>
 37
 38     <body bgcolor="affff" >
 39
 40     <!--定义按键表格,每个按键对应一个事件触发-->
 41
 42         <table border="1" align="center" bgColor="#bbff77"
 43             style="height: 350px; width: 270px">
 44             <tr>
 45                 <td colspan="4">
 46                     <input type="text" id="nummessege"
 47                         style="height: 90px; width: 350px; font-size: 50px" />
 48                 </td>
 49             </tr>
 50             <tr>
 51                 <td>
 52                     <input type="button" value="1" id="1" onclick="onclicknum(1)"
 53                         style="height: 70px; width: 90px; font-size: 35px">
 54                 </td>
 55
 56                 <td>
 57                     <input type="button" value="2" id="2" onclick="onclicknum(2)"
 58                         style="height: 70px; width: 90px; font-size: 35px">
 59                 </td>
 60
 61                 <td>
 62                     <input type="button" value="3" id="3" onclick="onclicknum(3)"
 63                         style="height: 70px; width: 90px; font-size: 35px">
 64                 </td>
 65
 66                 <td>
 67                     <input type="button" value="+" id="add" onclick="onclicknum(‘+‘)"
 68                         style="height: 70px; width: 90px; font-size: 35px">
 69                 </td>
 70             </tr>
 71
 72             <tr>
 73                 <td>
 74                     <input type="button" value="4" id="4" onclick="onclicknum(4)"
 75                         style="height: 70px; width: 90px; font-size: 35px">
 76                 </td>
 77
 78                 <td>
 79                     <input type="button" value="5" id="5" onclick="onclicknum(5)"
 80                         style="height: 70px; width: 90px; font-size: 35px">
 81                 </td>
 82
 83                 <td>
 84                     <input type="button" value="6" id="6" onclick="onclicknum(6)"
 85                         style="height: 70px; width: 90px; font-size: 35px">
 86                 </td>
 87
 88                 <td>
 89                     <input type="button" value="-" id="sub" onclick="onclicknum(‘-‘)"
 90                         style="height: 70px; width: 90px; font-size: 35px">
 91                 </td>
 92             </tr>
 93
 94             <tr>
 95                 <td>
 96                     <input type="button" value="7" id="7" onclick="onclicknum(7)"
 97                         style="height: 70px; width: 90px; font-size: 35px">
 98                 </td>
 99
100                 <td>
101                     <input type="button" value="8" id="8" onclick="onclicknum(8)"
102                         style="height: 70px; width: 90px; font-size: 35px">
103                 </td>
104
105                 <td>
106                     <input type="button" value="9" id="9" onclick="onclicknum(9)"
107                         style="height: 70px; width: 90px; font-size: 35px">
108                 </td>
109
110                 <td>
111                     <input type="button" value="*" id="mul" onclick="onclicknum(‘*‘)"
112                         style="height: 70px; width: 90px; font-size: 35px">
113                 </td>
114             </tr>
115
116             <tr>
117                 <td colspan="2">
118                     <input type="button" value="0" id="0" onclick="onclicknum(0)"
119                         style="height: 70px; width: 190px; font-size: 35px">
120                 </td>
121                 <td>
122                     <input type="button" value="." id="point" onclick="onclicknum(‘.‘)"
123                         style="height: 70px; width: 90px; font-size: 35px">
124                 </td>
125
126                 <td>
127                     <input type="button" value="/" id="division"
128                         onclick="onclicknum(‘/‘)"
129                         style="height: 70px; width: 90px; font-size: 35px">
130                 </td>
131             </tr>
132
133             <tr>
134
135                 <td colspan="2">
136                     <input type="button" value="Del" id="clear"
137                         onclick="onclickclear()"
138                         style="height: 70px; width: 190px; font-size: 35px" />
139                 </td>
140
141                 <td colspan="2">
142                     <input type="button" value="=" id="result"
143                         onclick="onclickresult()"
144                         style="height: 70px; width: 190px; font-size: 35px" />
145                 </td>
146
147
148             </tr>
149
150
151         </table>
152
153     </body>
154 </html>

HTML实现简单计算器

时间: 2024-12-24 01:49:31

HTML实现简单计算器的相关文章

j2ee-JSP之简单计算器

来源韩顺平.j2ee视频实战教程jsp第1讲(下集) -------------------------------------------------------------------------------------------------------- 简单计算器,可以控制输入的数(仅第一个数)不能为空且不能为字符串 myCal.jsp代码 1 <!--这是计算器的界面 --> 2 <!-- 可以控制输入的数不能为空且不能为字符串 --> 3 <%@ page co

JAVA编写的简单计算器

package com.hellojava.practice.test; import java.awt.BorderLayout; import java.awt.GridLayout; import java.awt.Panel; import java.awt.TextField; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; impo

HDU1237 简单计算器 【栈】+【逆波兰式】

版本:1.0 日期:2014.5.17 2014.6.1 版权:© 2014 kince 转载注明出处 在介绍SwitchButton之前,先来看一下系统Button是如何实现的.源码如下: @RemoteView public class Button extends TextView { public Button(Context context) { this(context, null); } public Button(Context context, AttributeSet att

[Java.web]简单计算器

项目的  WebRoot 目录下的 calculator.jsp <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE HTML> <html> <head> <title>计算结果</title> </head> <body> <jsp:us

NOIP19:简单计算器

/* 1.4编程基础之逻辑表达式与条件分支 19:简单计算器 总时间限制: 1000ms 内存限制: 65536kB 描述 一个最简单的计算器,支持+, -, *, / 四种运算.仅需考虑输入输出为整数的情况,数据和运算结果不会超过int表示的范围. 输入 输入只有一行,共有三个参数,其中第1.2个参数为整数,第3个参数为操作符(+,-,*,/). 输出 输出只有一行,一个整数,为运算结果.然而: 1. 如果出现除数为0的情况,则输出:Divided by zero! 2. 如果出现无效的操作符

hdoj 1237 简单计算器

简单计算器 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 14512    Accepted Submission(s): 4920 Problem Description 读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值. Input 测试输入包含若干测试用例,每个测试用例占一行,每行不超过200个字符,整

Shell 实现简单计算器功能

Shell 实现简单计算器功能,脚本如下: [[email protected] scripts]# cat jisuan.sh #!/bin/bash print_usage(){     printf $"USAGE:$0 NUM1 {+|-|*|/} NUM2\n"     exit 1 } #判断传入的参数是不是3个 if [ $# -ne 3 ]   then     print_usage fi firstnum=$1 secondnum=$3 op=$2 #对传入的参数进

Javascript 实现简单计算器实例代码

Javascript 实现简单计算器实例代码 这篇文章主要介绍了Javascript 实现简单计算器实例代码的相关资料,需要的朋友可以参考下 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

菜鸟学Android编程——简单计算器《一》

菜鸟瞎搞,高手莫进 本人菜鸟一枚,最近在学Android编程,网上看了一些视频教程,于是想着平时手机上的计算器应该很简单,自己何不尝试着做一个呢? 于是就冒冒失失的开撸了. 简单计算器嘛,功能当然很少,加减乘除就可以. 第一步:设计布局文件 界面如下图: 由于刚开始学Android,对布局文件也不是很了解,边查边找,最后凑合着写好了布局文件. 注意事项:此布局文件用到了GridLayout布局,是在Android4.0以上才出现的(不知道谷歌有没有开发相应的包来适配4.0以下版本). 有关Gri

HDU 1237 简单计算器

简单计算器 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 12832    Accepted Submission(s): 4222 Problem Description 读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值. Input 测试输入包含若干测试用例,每个测试用例占一行,每行不超过200个字符,整