javascript - 使用函数时输出错误

标签 javascript

我有一个计算某物价格的函数。 当年龄 < 5 时价格 = 0, 当年龄 < 15 时价格 = 价格/2 当年龄 > 15 时,价格 = 价格 + 价格*0.15。前两个工作正常,但最后一个有问题。例如,当价格输入为 100,年龄输入为 26 时,它给出的答案是 10015。

<script>
  function add(x, y) {
    return x+y;
  }
  function Subtract(x, y) {
    return x-y;
  }
  function Divide(x, y) {
    return x/y;
  }
  function Multiply(x, y) {
    return x*y;
  }
  var plusPrice = (function () {
    var counter = 0;
    return function () {return counter += 1;}
  })();
  var plusButton = (function () {
    var counter = 0;
    return function () {return counter += 1;}
  })();
  function updateClickCount() {
    document.getElementById("clicks").innerHTML = plusButton();
    if (document.getElementById("price").value !== '') {
      document.getElementById("input").innerHTML = plusPrice();
    }
  }
  function checkInputs() {
    var price = document.getElementById("price").value;
    var age = document.getElementById("age").value;
    if( parseInt(price) < 0  ||  isNaN(parseInt(price))) {
      window.alert("Please insert a valid price");
      price = '';
    }
    if(parseInt(age) > 100 || parseInt(age) < 0 ||  isNaN(parseInt(age))){
      window.alert("Please insert a valid age");
      age = '';
    }
  }
  function Calculate() {
    var price = document.getElementById("price").value;
    var age = document.getElementById("age").value;
    if (document.getElementById("price").value !== '' && document.getElementById("age").value !== '') {
      if (age<5) {
        document.getElementById("demo").innerHTML = Subtract(price,price);
      } else if (age < 15 && age >= 5) {
        document.getElementById("demo").innerHTML = Divide(price,2);
      } else {
        document.getElementById("demo").innerHTML = add(price,Multiply(price,0.15));
      }
    } else {
      window.alert("Please fill both age and price to calculate the amount you have to pay");
    }
  }

</script>

<body>
    Please enter the price: <br>
    <input type="text" id="price"><button onclick="document.getElementById('price').value = ''">Clear input field</button><br><br>
    Please enter your age: <br>
    <input type="text" id="age"><button onclick="document.getElementById('age').value = ''">Clear input field</button><br><br>
    <button onclick="checkInputs(); updateClickCount(); Calculate();">Calculate price</button>
    <p id="totalPrice">The total amount you have to pay is: </p><br>
    <p id="demo"></p>
    <p>Button Clicks: <a id="clicks">0</a></p>
    <p>Correct Price Fill Count: <span id="input">0</span></p>
  </body>

最佳答案

显然,price 是一个字符串。替换

    var price = document.getElementById("price").value;

    var price = parseFloat(document.getElementById("price").value);

该函数已经可以用于减法和除法,因为运算符 -/ 不能应用于字符串,因此 JS 将它们强制转换为数字。但是,+ 具有与字符串兼容的解释(字符串连接),因此不会发生类型强制。

关于javascript - 使用函数时输出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55512965/

相关文章:

javascript - 分割为二维数组

javascript - react : Adding an object to an array in state through input fields

JavaScript:以不同的方式定义数组

javascript - firefox addon sdk 1.17 截图

Javascript 使用上限函数来处理小于 1 的值

javascript - 没有折叠的相同导航栏

javascript - 通过使用 Safari 更改 window.location 下载文件

javascript - 均匀分布的随机数

javascript - Angular - 从刚刚加载的模板访问 DOM 元素

javascript - 当我添加 javascript 时,Laravel Maddhatter fullcalendar 不工作