控制台错误含义?

时间:2016-03-11 16:49:50

标签: javascript

我是编程新手,无法弄清楚我正在处理的代码有什么问题。在开发者控制台中,我不断收到这些错误代码。

  

Hw%20multifuncion.html:24未捕获SyntaxError:意外的令牌ILLEGAL   Hw multifuncion.html:34未捕获ReferenceError:未定义计算

这些是什么意思?我还不熟悉调试器,所以任何帮助都会非常感激。



<!DOCTYPE HTML>
<html lang="en-us">

<head>
  <meta charset="utf-8">
  <title>WindChill</title>
  <script type="text/javascript">
    /* Input: Temperature in fahrenheit and windspeed in mph
     * Processing: Calculate windchill and output to user. While useing two funcions, and assign a call and return.
     * Output: The windchill
     */

    function compute() {
      var temperature = document.getElementById("temperature").value;
      var windspeed = document.getElementById("windspeed").value;
      var temp = parseInt(temperature);
      var wind = parseInt(windspeed);
      var result = windChill(temp, wind);
      document.getElementById("output").innerHTML = result;
    }


    function windChill(tempF, speed) {
      var f = 35.74 + 0.6215 * tempF− 35.75 * Math.pow(speed, 0.16) + 0.4275 * Math.pow(tempF, 0.16);
    }
  </script>
</head>

<body>

  Temperature (Fahrenheit)
  <input type="text" id="temperature" size="5">
  <br>Wind speed (MPH)
  <input type="text" id="windspeed" size="5">
  <button type="button" onclick="compute()">WindChill</button>
  <div id="output"></div>
</body>

</html>
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:0)

问题出在您的windChill函数中:您使用的是而不是-符号。

function windChill(tempF,speed) {
    var f = 35.74 + 0.6215*tempF - 35.75*Math.pow(speed,0.16) + 0.4275*Math.pow (tempF,0.16);
}

答案 1 :(得分:0)

您的windChill功能有两个问题:

  • 需要返回结果。就像现在一样,您将计算分配给f,但是您没有对它做任何事情。

  • 正如Darshan指出的那样,您的负-符号似乎不正确。

只需在变量赋值后添加return f;并更正减号。