<html>
<head>
<title>计算器</title>
<meta charset="UTF-8"/>
<style type="text/css">
#shoudiv{
border:solid 1px;
width:320px;
height:400px;
border-radius: 10px;
text-align: center;
margin: auto;
margin-top: 60px;
background-color: floralwhite;
}
input[type=text]{
margin-top: 20px;
width:290px;
height:40px;
font-size: 20px;
}
input[type=button]{
width:60px;
height:60px;
margin-top: 20px;
margin-left:5px;
margin-right:5px;
font-size: 20px;
font-weight: bold;
font-family:"微软雅黑" ;
}
</style>
<script type="text/javascript">
function test(btn){
var num=btn.value;
switch(num){
case"=": document.getElementById("inp").value=eval(document.getElementById("inp").value);break;
case"c": document.getElementById("inp").value="";break;
default:document.getElementById("inp").value=document.getElementById("inp").value+num;
}
}
</script>
</head>
<body>
<h1 align="center" >Mu_Zhou </h1>
<hr />
<div id="shoudiv">
<input type="text" name="" id="inp" value="" />
<input type="button" name="" id="" value="1" onclick="test(this)"/>
<input type="button" name="" id="" value="2" onclick="test(this)"/>
<input type="button" name="" id="" value="3" onclick="test(this)"/>
<input type="button" name="" id="" value="4" onclick="test(this)"/><br />
<input type="button" name="" id="" value="5" onclick="test(this)"/>
<input type="button" name="" id="" value="6" onclick="test(this)"/>
<input type="button" name="" id="" value="7" onclick="test(this)"/>
<input type="button" name="" id="" value="8" onclick="test(this)"/><br />
<input type="button" name="" id="" value="9" onclick="test(this)"/>
<input type="button" name="" id="" value="0" onclick="test(this)"/>
<input type="button" name="" id="" value="+" onclick="test(this)"/>
<input type="button" name="" id="" value="-" onclick="test(this)"/><br />
<input type="button" name="" id="" value="*" onclick="test(this)"/>
<input type="button" name="" id="" value="/" onclick="test(this)"/>
<input type="button" name="" id="" value="c" onclick="test(this)"/>
<input type="button" name="" id="" value="=" onclick="test(this)"/>
</div>
</body>
</html>
08-js写计算器
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- HTML 学习笔记 May 13,2017 js事件驱动机制、js事件分类、js访问css技术、js事件驱动机制深...
- 手摸手教你用 js 写一个 js 解释器 用 js 来 编译 js 看起来是个高大上的东西,实际原理其实很简单,无...