简单的网页版计算器

<!DOCTYPE html> 
<html>
<meta name="content-type" content="text/html; charset=UTF-8"> 
	<head>
		<title>cal</title>
		<script type="text/javascript"> 
			var str;
			function onclicknum(num)
			{
				str = document.getElementById("result_show"); 
				str.value =str.value + num;
			}
			function OnClickResult()
			{
				str = document.getElementById("result_show");
				str.value = eval(str.value);
			}
			function OnClickClear()
			{
				str = document.getElementById("result_show");
			        str.value = "";
			} 
		</script>	 
	</head>
 
 	<body bgcolor="#ADD8E6">
	<!--定义按键表格,每个按键对应一个事件触发-->
		<table border="1"align="center" bgColor="#FFB6C1"
		style="height: 350px; width: 270px">
			<tr>
				<td colspan="4">
					<input type="text" value="" id="result_show"
					style="height: 90px; width: 380px; font-size: 50px" />
				</td>
			</tr> 
			<tr>
				<td>
					<input type="button" value="1" id="btn_1" οnclick="onclicknum(1)"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="2" id="btn_2" οnclick="onclicknum(2)"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="3" id="btn_3" οnclick="onclicknum(3)"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="+" id="btn_add" οnclick="onclicknum('+')"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
			</tr>

			<tr>
				<td>
					<input type="button" value="4" id="btn_4" οnclick="onclicknum(4)"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="5" id="btn_5" οnclick="onclicknum(5)"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="6" id="btn_6" οnclick="onclicknum(6)"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="-" id="btn_sub" οnclick="onclicknum('-')"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
			</tr>

			<tr>
				<td>
					<input type="button" value="7" id="bnt_7" οnclick="onclicknum(7)"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="8" id="bnt_8" οnclick="onclicknum(8)"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="9" id="bnt_9" οnclick="onclicknum(9)"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="*" id="bnt_mul" οnclick="onclicknum('*')"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
			</tr> 
			<tr>
				<td colspan="2">
					<input type="button" value="0" id="bnt_0" οnclick="onclicknum(0)"
					style="height: 70px; width: 190px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="." id="bnt_point" οnclick="onclicknum('.')"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
				<td>
					<input type="button" value="/" id="bnt_division"οnclick="onclicknum('/')"
					style="height: 70px; width: 90px; font-size: 35px">
				</td>
			</tr>
			<tr>
				<td colspan="2">
					<input type="button" value="Del" id="bnt_clear"οnclick="OnClickClear()"
					style="height: 70px; width: 190px; font-size: 35px" />
				</td>
				<td colspan="2">
					<input type="button" value="=" id="bnt_result"οnclick="OnClickResult()"
					style="height: 70px; width: 190px; font-size: 35px" />
				</td>

				</tr>  
  

 	</body>
 
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值