Implementing a simple calculator with javascript

Implementing a simple calculator with javascript

This article example shares the specific code of javascript to implement a simple calculator for your reference. The specific content is as follows

Design a simple calculator

Code

 <body>
  <a>First number</a>
  <input type="test" id="inputId1" value="" /><br/>
  <a>Second number</a>
  <input type="test" id="inputId2" value="" /><br/>
  <button onclick="cal('+')">+</button>
  <button onclick="cal('-')">-</button>
  <button onclick="cal('*')">*</button>
  <button onclick="cal('/')">/</button><br/>
  Calculation results
  <input type="test" id="resultId" value="" />
  <script type="text/javascript">
   // function add() {
   // console.log('add');
   // var inputObj1 = document.getElementById('inputId1');
   // var inputObj2 = document.getElementById('inputId2');
   // var result = parseInt(inputObj1.value) + parseInt(inputObj2.value);
   // var resultObj = document.getElementById('result');
   // resultObj.value = result;
   // console.log(result);
   // }
   function cal(type) {
    var inputObj1 = document.getElementById('inputId1');
    var inputObj2 = document.getElementById('inputId2');
    switch(type){
     case '+':
      var result = parseInt(inputObj1.value) + parseInt(inputObj2.value);
      break;
     case '-':
      var result = parseInt(inputObj1.value) - parseInt(inputObj2.value);
      break;
     case '*':
      var result = parseInt(inputObj1.value) * parseInt(inputObj2.value);
      break;
     case '/':
      var result = parseInt(inputObj1.value) / parseInt(inputObj2.value);
      break;
    }
    var resultObj = document.getElementById('resultId');
    resultObj.value = result;
   }
   
  </script>
 </body>
</html>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Implementing a simple age calculator based on HTML+JS
  • Implementing a web calculator with native JavaScript
  • Detailed explanation of the process of realizing calculator function in javascript
  • JavaScript implements simple calculator function
  • js version to realize calculator function
  • Native js to implement a simple calculator
  • Writing a web calculator using javascript
  • JavaScript Example - Implementing a Calculator

<<:  Summary of basic SQL statements in MySQL database

>>:  How to run Python script on Docker

Recommend

How to solve the problem that Docker container has no vim command

Find the problem Today, when I tried to modify th...

Practice of realizing Echarts chart width and height adaptation in Vue

Table of contents 1. Install and import 2. Define...

Common commands for mysql authorization, startup, and service startup

1. Four startup methods: 1.mysqld Start mysql ser...

Vue+spring boot realizes the verification code function

This article example shares the specific code of ...

Solve the problem when setting the date to 0000-00-00 00:00:00 in MySQL 8.0.13

I just started learning database operations. Toda...

How to reset the root password in CentOS7

There are various environmental and configuration...

Create a movable stack widget function using flutter

This post focuses on a super secret Flutter proje...

Detailed explanation of the principle and usage of MySQL stored procedures

This article uses examples to explain the princip...

SystemC environment configuration method under Linux system

The following is the configuration method under c...

Nginx forwarding based on URL parameters

Use scenarios: The jump path needs to be dynamica...

JavaScript Advanced Programming: Variables and Scope

Table of contents 1. Original value and reference...

About installing python3.8 image in docker

Docker Hub official website 1. Search for Python ...

Steps to deploy multiple tomcat services using DockerFile on Docker container

1. [admin@JD ~]$ cd opt #Enter opt in the root di...