This article shares the specific code of JavaScript to implement the minesweeper game of the web calculator for your reference. The specific content is as follows First look at the effect: In addition, the calculator also comes with digital and operator checking functions: Paste the source code below: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Calculator</title> <script language="javascript"> var oper1=prompt("Please enter the first operand:"); var oper2 = prompt("Please enter the second operand: "); var operator=prompt("Please enter the operator (+, -, *, /)"); parse(); var result; switch(operator) { case"+": result=doSum(oper1,oper2); alert(oper1+"+"+oper2+"="+result); break; case"-": result = doSubstract (oper1, oper2); alert(oper1+"-"+oper2+"="+result); break; case"*": result = doMultiply(oper1,oper2); alert(oper1+"*"+oper2+"="+result); break; case"/": result = doDivide(oper1,oper2); alert(oper1+"/"+oper2+"="+result); break; default: alert("The operator entered is illegal"); } function parse(){ if(isNaN(oper1)||isNaN(oper2)){ alert("The number entered is illegal"); } else{ oper1 = parseFloat(oper1); oper2 = parseFloat(oper2); } } function doSum(oper1,oper2){ return oper1+oper2; } function doSubstract(oper1,oper2){ return oper1-oper2; } function doMultiply(oper1,oper2){ return oper1*oper2; } function doDivide(oper1,oper2){ return oper1/oper2; } </script> </head> <body> </body> </html> Of course, only the JavaScript source code is shown here. You can also use html+css to design a nice appearance for the calculator. You can feel free to use it. 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:
|
<<: Detailed explanation of common MySQL operation commands in Linux terminal
>>: Complete steps for mounting a new data disk in CentOS7
In a table, you can define the color of the upper...
<body> <div id="root"> <...
Shell Script #!/bin/sh # Current directory CURREN...
wangEditor is a web rich text editor developed ba...
This article mainly introduces the sql script fun...
Table of contents 1. Write in front 2. Overlay to...
Preface Slow query log is a very important functi...
Friends always ask me how to hide Linux processes...
Mainly for low version browsers <!-- --> is ...
You can add comments to MySQL SQL statements. Her...
Table of contents background Solution 1 Ideas: Co...
Table of contents Main topic 1. Install Docker on...
The security issues encountered in website front-...
Preface Swap is a special file (or partition) loc...
The operating environment of this tutorial: Windo...