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

前端之家收集整理的这篇文章主要介绍了Javascript 实现简单计算器实例代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

效果图:

刚开始做时没考虑到清零和退格两个功能,嘻嘻,后来加的整体与传统计算器比有点小瑕疵。

代码

<Meta charset="utf-8"> js简单计算器

<style type="text/css">
*{
margin:0px;
padding:0px;
}
input{
margin-top:2px;
margin-left:2px;
width:230px;
height:30px;
text-align:right;
}
button{
margin-top:2px;
margin-left:2px;
width:50px;
height:50px;
}

container{

margin-left:1px;
border:1px solid #E4E4E4;
background:#BBBBBB;
width:235px;
height:215px;
}

<body onload="onLoad()">
<input id="input" type="text">
<div id="container">

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持

原文链接:https://www.f2er.com/js/44959.html

猜你在找的JavaScript相关文章