您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要为大家展示了“JS怎么实现计算器”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“JS怎么实现计算器”这篇文章吧。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>JS计算器</title> <style> body,p,input{ margin: 0; padding: 0; } .wp{ width: 500px; height: 500px; border:10px solid black; margin: 0 auto; margin-top: 100px; } #text{ width: 480px; height: 90px; border-bottom: 10px solid black; font-size: 50px; line-height: 100px; text-align: left; padding-left: 20px; background: #ffffff; } input{ width: 125px; height: 100px; background: #c0c0c0; float: left; font-size: 40px; line-height: 100px; text-align: center; } </style> <script> window.onload = function () { var oText = document.getElementById('text'); var aBtn = document.getElementsByTagName('input'); var aText = oText.value for(i=0;i<aBtn.length;i++){ aBtn[i].onclick = conunt; }; function conunt(value){ if(this.value == 'C'){ oText.value =''; }else if(this.value == '='){ oText.value = eval(oText.value) }else if(this.value == 'x'){ oText.value -= oText.value.substring( oText.value.length); } else{ oText.value += this.value; }; }; }; </script> </head> <body> <div class="wp"> <input type="text" id="text"> <input type="button" id="btn1" value="C" > <input type="button" id="btn2" value="/"> <input type="button" id="btn3" value="*"> <input type="button" id="btn4" value="-"> <input type="button" id="btn5" value="1"> <input type="button" id="btn6" value="2"> <input type="button" id="btn7" value="3"> <input type="button" id="btn8" value="+"> <input type="button" id="btn9" value="4"> <input type="button" id="btn10" value="5"> <input type="button" id="btn11" value="6"> <input type="button" id="btn12" value="."> <input type="button" id="btn13" value="7"> <input type="button" id="btn14" value="8"> <input type="button" id="btn15" value="9"> <input type="button" id="btn16" value="="> </div> </body> </html>
以上是“JS怎么实现计算器”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。