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:
|
<<: Summary of basic SQL statements in MySQL database
>>: How to run Python script on Docker
Find the problem Today, when I tried to modify th...
Table of contents 1. Demand 2. Database Design 3....
Table of contents 1. Install and import 2. Define...
1. Four startup methods: 1.mysqld Start mysql ser...
This article example shares the specific code of ...
I just started learning database operations. Toda...
1. Set CORS response header to achieve cross-doma...
There are various environmental and configuration...
This post focuses on a super secret Flutter proje...
This article uses examples to explain the princip...
The following is the configuration method under c...
Use scenarios: The jump path needs to be dynamica...
Table of contents 1. Original value and reference...
Docker Hub official website 1. Search for Python ...
1. [admin@JD ~]$ cd opt #Enter opt in the root di...