源码网,源码论坛,源码之家,商业源码,游戏源码下载,discuz插件,棋牌源码下载,精品源码论坛

 找回密码
 立即注册
楼主: ttx9n

[JavaScript] 简单快速的实现js计算器功能

[复制链接]

7万

主题

861

回帖

32万

积分

论坛元老

Rank: 8Rank: 8

积分
329525
发表于 2017-8-17 09:54:22 | 显示全部楼层 |阅读模式
这篇文章主要教大家如何快速简单的实现js计算器功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

在js的全局方法中有一个eval()方法,由于平时不怎么用,所以到关键时候就没想起来它

想写一个简易的计算器,本来以为要不了多久就能写出来的,谁知道愣是花费了我近两个小时的时间来写,但结果还是不能令我满意。想找一个更好的方法来写,不想写的那么麻烦,用什么方法呢?想了一个遍,后来猛然看到屏幕上有一个eval(),当时我的电脑正打开着网页。福星来了,对啊,我浪费了这么长时间写出来的东西还不能令我满意,一个eval()不就搞定了么,下面就给大家看一下我写的代码,写的很粗糙,还请大家多多指正。

<!DOCTYPE html> 
<html> 
 <head> 
  <meta charset="UTF-8"> 
  <title></title> 
  <style type="text/css"> 
   .box{ 
    width: 400px; 
    height: 450px; 
    margin: 0 auto; 
    background: pink; 
   } 
   .show{ 
    width:100%; 
    height: 100px; 
    line-height: 100px; 
    text-align: right; 
    background: #FFFFFF; 
    border:1px solid #000; 
   } 
   .operate{ 
    width: 100%; 
    height: 250px; 
    margin-top: 50px; 
   } 
   p{ 
    margin-top: 20px; 
    text-align: center; 
   } 
   input{ 
    width: 80px; 
    height: 40px; 
    /*margin-left: 50px;*/ 
    text-align: center; 
   } 
   input:nth-child(5n),input:first-child{ 
    margin-left: 0; 
   } 
  </style> 
 </head> 
 <body> 
  <div class="box"> 
   <div class="show" id="show"></div> 
   <div class="operate"> 
    <p> 
     <input type="button" name="one" id="one" value="1" onclick="num(1)"/> 
     <input type="button" name="two" id="two" value="2" onclick="num(2)"/> 
     <input type="button" name="three" id="three" value="3" onclick="num(3)"/> 
     <input type="button" name="plus" id="plus" value="+" onclick="num('+')"/> 
    </p> 
    <p> 
     <input type="button" name="four" id="four" value="4" onclick="num(4)"/> 
     <input type="button" name="five" id="five" value="5" onclick="num(5)"/> 
     <input type="button" name="six" id="six" value="6" onclick="num(6)"/> 
     <input type="button" name="reduce" id="reduce" value="-" onclick="num('-')"/> 
    </p> 
    <p> 
     <input type="button" name="seven" id="seven" value="7" onclick="num(7)"/> 
     <input type="button" name="eight" id="eight" value="8" onclick="num(8)"/> 
     <input type="button" name="nine" id="nine" value="9" onclick="num(9)"/> 
     <input type="button" name="times" id="times" value="x" onclick="num('*')"/> 
    </p> 
    <p> 
     <input type="button" name="divide" id="divide" value="/" onclick="num(/)"/> 
     <input type="button" name="zero" id="zero" value="0" onclick="num(0)"/> 
     <input type="button" name="equal" id="equal" value="=" onclick="equal()"/> 
     <input type="button" name="mod" id="mod" value="%" onclick="num('%')"/> 
    </p> 
   </div>  
      
  </div> 
 </body> 
 <script type="text/javascript"> 
  function num(figure){ 
//   var figure = figure.toString(); 
   var show = document.getElementById("show"); 
   showNum = show.innerHTML+figure; 
   show.innerHTML = showNum; 
  } 
  function equal(){ 
   document.getElementById("show").innerHTML = eval(document.getElementById("show").innerHTML); 
   /*var lal = document.getElementById("show").innerHTML; 
   alert(lal);*/ 
  } 
 </script> 
</html> 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

回复

使用道具 举报

14

主题

1万

回帖

75

积分

注册会员

Rank: 2

积分
75
发表于 2022-12-11 18:59:10 | 显示全部楼层
好人好人好人好人
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

59

积分

注册会员

Rank: 2

积分
59
发表于 2023-3-3 15:10:45 | 显示全部楼层
收下来看看怎么样
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

321

积分

中级会员

Rank: 3Rank: 3

积分
321
发表于 2023-8-31 14:09:41 | 显示全部楼层
抽根烟,下来看看再说
回复 支持 反对

使用道具 举报

4

主题

2万

回帖

107

积分

注册会员

Rank: 2

积分
107
发表于 2023-9-15 20:51:16 | 显示全部楼层
而快乐你们快乐马年快乐
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

207

积分

中级会员

Rank: 3Rank: 3

积分
207
发表于 2023-10-9 01:25:08 | 显示全部楼层
呵呵呵呵呵呵
回复 支持 反对

使用道具 举报

3

主题

2万

回帖

172

积分

注册会员

Rank: 2

积分
172
发表于 2024-3-25 04:08:59 | 显示全部楼层
来看看怎么样
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2024-4-17 04:45:21 | 显示全部楼层
看看看看看看看看看看看看看看看看看看看看看看看看看看看
回复 支持 反对

使用道具 举报

2

主题

2万

回帖

473

积分

中级会员

Rank: 3Rank: 3

积分
473
发表于 2024-7-9 02:39:36 | 显示全部楼层
哦哦哦ijhhsdj
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

93

积分

注册会员

Rank: 2

积分
93
发表于 2024-8-26 02:13:55 | 显示全部楼层
66666666666666666666
回复 支持 反对

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

手机版|小黑屋|网站地图|源码论坛 ( 海外版 )

GMT+8, 2025-1-18 17:05 , Processed in 0.282711 second(s), 22 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表