js计算器(丑哭)

最近初学js,写了一个小计算器玩玩,分享给大家。`
在这里插入图片描述界面真的很丑啊🤫

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>计算器</title>
<script type="text/javascript" >
	function deliver(value){
		
	document.getElementById('display').value+=value;
	}
	function cclt(){
		var result=0;
		result=document.getElementById('display').value;
		document.getElementById('display').value=eval(result);
	}
	
	function oclear(){
		document.getElementById('display').value='';
	}
	</script>		
</head>

<body>
	
	
	<center>
		
	<div style="background-color: aquamarine; height: 600px; width: 300px;">
		<br>
		<br>
<input type="text"  id="display" style="width: 290px; text-align: right;" value="" >
	<br>
	<br>
<input type="button" value="1"  onclick="deliver(value)" style="width:50px;"  >	
<input type="button" value="2"  onclick="deliver(value)" style="width:50px;"> 
<input type="button" value="3"  onclick="deliver(value)" style="width:50px;">
	<br>
		
<input type="button" value="4"  onclick="deliver(value)" style="width:50px;">	
<input type="button" value="5"  onclick="deliver(value)" style="width:50px;">	
<input type="button" value="6"  onclick="deliver(value)" style="width:50px;">	
	<br>
<input type="button" value="7" onclick="deliver(value)" style="width:50px;">	
<input type="button" value="8" onclick="deliver(value)" style="width:50px;">	
<input type="button" value="9" onclick="deliver(value)" style="width:50px; height: auto">
	<br>
<input type="button" value="0" onclick="deliver(value)" style="width: 160px;">
	<br>
		
<input type="button" value="+"   onclick="deliver(value)" style="width: 40px;   margin-right:-5px;">	
<input type="button" value="-"  onclick="deliver(value)" style="width: 40px;	margin-right:-2px;">	
<input type="button" value="*"  onclick="deliver(value)" style="width: 40px;	margin-left:-2px;">	
<input type="button" value="/"   onclick="deliver(value)" style="width: 40px;	margin-left:-4.5px;">
		<br>
<input type="button" value="="  style="width: 160px;" onclick="cclt()">
<input type="button" value="clear"  style="width: 160px;" onclick="oclear()">
		</div>
</center></body>
</html>

代码虽然简单,但本人才学了第三天,因此参考了菜鸟工具
欢迎指导,纠正,交流,学习,讨论!
谢谢!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值