欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

简易计算器

程序员文章站 2022-03-27 09:59:29
...

作业如下

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>简易计算器</title>
  6. <style>
  7. input {height: 30px; line-height: 30px; padding: 0 10px; width: 60px; border: solid 1px #ddd}
  8. select {height: 30px; line-height: 30px; padding: 0 10px;border: solid 1px #ddd}
  9. button {background-color: dodgerblue; color: #fff; border: none; height: 30px; line-height: 30px; padding: 0 10px; cursor: pointer}
  10. #jieguo {margin-top: 10px; color: #f00}
  11. </style>
  12. </head>
  13. <body>
  14. <input type="text" name="a" id="a" value="">
  15. <select name="y" id="y">
  16. <option value="+">+</option>
  17. <option value="-">-</option>
  18. <option value="*">*</option>
  19. <option value="/">/</option>
  20. </select>
  21. <input type="text" name="b" id="b" value="2">
  22. <button id="btn">计算</button>
  23. <div id="jieguo">?</div>
  24. <script>
  25. document.getElementById('btn').onclick=function () {
  26. var a = document.getElementById('a').value;
  27. var b = document.getElementById('b').value;
  28. var y = document.getElementById('y').value;
  29. a = parseInt(a);
  30. b = parseInt(b);
  31. var tiaojian = true; // 输入条件符合
  32. var n;
  33. // 输入情况判断
  34. if (!a){
  35. n = '第一个值不能为空或者不是数字';
  36. tiaojian = false
  37. }
  38. if (!b){
  39. var n = 1111;
  40. alert('第二个值不能为空或者不是数字')
  41. tiaojian = false
  42. }
  43. // if判断法
  44. if (tiaojian==true){
  45. if (y=='+'){
  46. n = a+"+"+b+"="+(a+b);
  47. }else if (y=='-'){
  48. n = a+"-"+b+"="+(a-b);
  49. }else if (y=='*'){
  50. n = a+"*"+b+"="+(a*b);
  51. }else if (y=='/'){
  52. n = a+"/"+b+"="+(a/b);
  53. }
  54. }
  55. document.getElementById('jieguo').innerHTML=n;
  56. }
  57. </script>
  58. </body>
  59. </html>