• js之简易计算器


    ####闲来无事,写点小东西给初学者,下面是一个简易的计算器,我们来看具体的代码:    
        <!DOCTYPE html>
        <html lang="en">
        <head>
        <meta charset="UTF-8">
        <title>简易计算器</title>
        <style>
          div{
            height: 100px;
            margin: 200px 350px;
          }
        </style>
        <script type="text/javascript">
        function getId(idname){
          return document.getElementById(idname)
        }
        function count(){
          switch(getId("select").value){
            case "+":
              getId("txt3").value=parseInt(getId("txt1").value)+parseInt(getId("txt2").value)
            break;
        
            case "-":
              getId("txt3").value=getId("txt1").value-getId("txt2").value
            break;
        
            case "*":
              getId("txt3").value=getId("txt1").value*getId("txt2").value
            break;
        
            case "/":
              getId("txt3").value=getId("txt1").value/getId("txt2").value
            break;
          }
        }
        </script>
        </head>
        <body>
        <div>
          <input type="text" id="txt1">
          <select id="select">
            <option value="+">+</option>
            <option value="-">-</option>
            <option value="*">*</option>
            <option value="/">/</option>
          </select>
          <input type="text" id="txt2">
          <button onclick="count()">=</button>
          <input type="text" id="txt3" onclick="count()">
        </div>
        
        </body>
        </html>

  • 相关阅读:
    队列(顺序存储结构)
    2015计划
    iframe子窗口父窗口方法调用和元素获取
    Ajax关于重定向
    Java国际化资源文件的选择
    eclipse自动部署web应用程序到tomcat webapps
    从给定字符串结尾获取指定字节长度的字符串
    Winform的一些不知道啥东西
    C# 2008核心编程 2013-09-14
    C# 2008核心编程 2013-09-10
  • 原文地址:https://www.cnblogs.com/x1024/p/6000637.html
Copyright © 2020-2023  润新知