js to make a simple calculator

js to make a simple calculator

This article shares the specific code of making a simple calculator with js for your reference. The specific content is as follows

To make a simple calculator as shown in the picture, you must first create a form and make it look like the one shown in the picture.

<table border="1" cellspacing="0" >
   <tr><th colspan="2">Shopping Calculator</th></tr>
   <tr>
    <td>The first number</td>
       <td><input type="text" id="inputId1" /></td>
   </tr>
   <tr>
    <td>The second number</td>
       <td><input type="text" id="inputId2" /></td>
   </tr>
   <tr>
    <td><button type="button" onclick="cal('+')" >+</button></td>
    <td><button type="button" onclick="cal('-')" >-</button>
    <button type="button" onclick="cal('*')" >*</button>
    <button type="button" onclick="cal('/')" >/</button></td>
   </tr>
   <tr>
    <td>Calculation results</td>
    <td><input type="text" id="resultId"/></td>
   </tr>
</table>

Onclick uses the cal() method. In fact, I used add, sub, mul, and div methods at first. Later, I found that these four methods are the same except for the arithmetic operators. So I chose to use one method. When clicking the button, the arithmetic operator passed to the method is different. The code is as follows:

<script type="text/javascript">
 function cal(type){
  var num1 = document.getElementById('inputId1');
  var num2 = document.getElementById('inputId2');
  var result;
   switch(type){
    case '+':
    result = parseInt(num1.value) + parseInt(num2.value);
    break;
    case '-':
    result = parseInt(num1.value) - parseInt(num2.value);
    break;
    case '*':
    result = parseInt(num1.value) * parseInt(num2.value);
    break;
    case '/':
    result = parseInt(num1.value) / parseInt(num2.value);
    break;
  }
 var resultObj = document.getElementById('resultId');
 resultObj.value = result;
 }
</script>

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 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
  • Implementing a simple calculator with javascript
  • Writing a web calculator using javascript
  • Write a simple calculator using JavaScript

<<:  Summary of MySQL lock knowledge points

>>:  Analysis of permissions required to run docker

Recommend

Steps of an excellent registration process

For a website, it is the most basic function. So l...

HTML Basics: The basic structure of HTML

The basic structure of HTML hypertext documents is...

Understanding the Lazy Loading Attribute Pattern in JavaScript

Traditionally, developers create properties in Ja...

Solution for FileZilla 425 Unable to connect to FTP (Alibaba Cloud Server)

Alibaba Cloud Server cannot connect to FTP FileZi...

CentOS7 installation GUI interface and remote connection implementation

Use the browser (webdriver)-based selenium techno...

Installation and daemon configuration of Redis on Windows and Linux

# Installation daemon configuration for Redis on ...

How to solve the error of PyCurl under Linux

Solution to "Could not run curl-config"...

JavaScript Function Currying

Table of contents 1 What is function currying? 2 ...

Method example of safely getting deep objects of Object in Js

Table of contents Preface text parameter example ...

Analyze how a SQL query statement is executed in MySQL

Table of contents 1. Overview of MySQL Logical Ar...

Vue3+TypeScript encapsulates axios and implements request calls

No way, no way, it turns out that there are peopl...

HTML uses form tags to implement the registration page example code

Case Description: - Use tables to achieve page ef...

A brief analysis of the use of watchEffect in Vue3

Preface Everyone should be familiar with the watc...

A brief discussion on the types of node.js middleware

Table of contents Overview 1. Application-level m...