简单计算器
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>
以上是关于简单计算器的主要内容,如果未能解决你的问题,请参考以下文章