How to find the difference in javascript

藏色散人
Release: 2021-10-18 11:19:36
Original
1520 people have browsed it

Javascript method to achieve difference: 1. Create an HTML sample file; 2. Create an input input box; 3. Calculate the difference of the numbers in the input through the "num1-num2" formula, and then put it in a div. Can.

How to find the difference in javascript

The operating environment of this article: windows7 system, javascript version 1.8.5, DELL G3 computer

How to find the difference in javascript?

JavaScript calculates the difference between two numbers:

Requirements

Enter two numbers in the two input boxes and click When pressing the button, the difference between the two numbers is calculated and displayed in the div with the id of result.

Implementation code

<!DOCTYPE html>
<html>
 
 <head>
 <meta charset="UTF-8">
 <title></title>
 <style type="text/css">
 body{
 padding-top: 100px;
 text-align: center;
 }
 #result{
 width: 50%;
 height: 100px;
 margin: 0 auto;
 border: 1px solid #ccc;
 }
 </style>
 </head>
 
 <body>
 <input type="text" id="ipt1"/>
 <input type="text" id="ipt2"/>
 <button id="btn">计算</button>
 <div class="result"></div>
 <script type="text/javascript">
 // 得到input里面的值,然后拿到减,把结果放到div中
 // input.value div.innerHTML 事件绑定
 // 找对象 input button div
 var oIpt1 = document.getElementById("ipt1")
 var oIpt2 = document.getElementById("ipt2")
 var oBtn = document.getElementById("btn")
 var oBox = document.getElementById("result")
 // 事件函数绑定
 oBtn.onclick = function(){
 // 计算input里面数字的差 然后放到div中
 var num1 = oIpt1.value
 var num2 = oIpt2.value
 var result = num1-num2
 // 给div设置一个内容 result
 oBox.innerHTML = result
 }
 </script>
 </body>
 
</html>
Copy after login

Recommended study: "javascript basic tutorial"

The above is the detailed content of How to find the difference in javascript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!