小小计算器

Posted 上官靖宇

tags:

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

ody>
   <input type=‘text‘ id=‘txt1‘ /> 
   <select id=‘select‘>
        <option value=‘+‘>+</option>
        <option value="-">-</option>
        <option value="*">*</option>
        <option value="/">/</option>
   </select>
   <input type=‘text‘ id=‘txt2‘ /> 
   <input type=‘button‘ value=‘=‘ onclick="count()"/> <!--通过 = 按钮来调用创建的函数,得到结果--> 
<script type="text/javascript">
   function count(){
       
    //获取第一个输入框的值txt1
    var txt1 = parseInt(document.getElementById("txt1").value);
    //获取第二个输入框的值
    var txt2 =  parseInt(document.getElementById("txt2").value);
    //获取选择框的值
     var select = document.getElementById("select").value;
    //获取通过下拉框来选择的值来改变加减乘除的运算法则
    var result = 0;
    if(select=="+"){
        result = txt1+txt2;
    }
    if(select=="-"){
        result = txt1-txt2;
    }
    if(select=="*"){
        result = txt1*txt2;
    }
    if(select=="/"){
        result = txt1/txt2;
    }
    //设置结果输入框的值 
    alert(result);
   }
  </script> 

 

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

小小计算器

我对编译原理的小小了解

Android:向活动添加片段

从JVM的角度看JAVA代码--代码优化

Vue3官网-高级指南(十七)响应式计算`computed`和侦听`watchEffect`(onTrackonTriggeronInvalidate副作用的刷新时机`watch` pre)(代码片段

小小知识点(二十)利用MATLAB计算定积分