简单计算器

Posted 东华上仙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单计算器相关的知识,希望对你有一定的参考价值。

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <meta charset="UTF-8">
 5 <title>简单计算器</title>
 6 <script>
 7     function cal() {
 8         //获取文本框
 9         var input = document.getElementById("ss");
10         //获取框内的值
11         var ss = input.value;
12         try {
13             //计算
14             input.value = eval(ss);
15         } catch(e) {
16             input.value = "Error";
17         }
18     }
19 </script>
20 </head>
21 <body>
22     <input type="text" id="ss"/>
23     <input type="button" value="=" onclick="cal();"/>
24 </body>
25 </html>

 

以上是关于简单计算器的主要内容,如果未能解决你的问题,请参考以下文章

ruby 这个片段是一种简单的ruby方式,用于计算在Twitter上共享指定网址的次数。

PHP 精度计算引发的灾难性Bug

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

为啥这段代码会泄露? (简单的代码片段)

GLSL-片段着色器不同部分的精度不同

GLSL片段着色器 - 绘制简单的粗曲线