自制的计算器不起作用

时间:2016-02-16 07:55:39

标签: javascript php html forms

我用JS和PHP编写了小型计算器脚本。正如我所看到的一切都是正确的,但在输出服务器中显示空白('0')值。我找不到2个小时的解决方案。 JS脚本,使用动作'calc.php'打开与POST方法的连接:

  <script type="text/javascript">
  function getXmlHttp() {
    var xmlhttp;
    try {
      xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
    try {
      xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    } catch (E) {
      xmlhttp = false;
    }
    }
    if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
      xmlhttp = new XMLHttpRequest();
    }
    return xmlhttp;
  }
  function summa() {
    var how0 = document.getElementById("how0").value;
    var xmlhttp = getXmlHttp(); 
    xmlhttp.open('POST', 'calc.php', true);
    xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); 
    xmlhttp.send("how0=" + encodeURIComponent(how0));
    xmlhttp.onreadystatechange = function() {
      if (xmlhttp.readyState == 4) { 
        if(xmlhttp.status == 200) { 
          document.getElementById("how").value = xmlhttp.responseText; // 
        }
      }
    };
  }
</script>

计算表格:

<input type="number" required name="how0" id="how0" min="100" max="999999" placeholder="100">
 <input type="number" required readonly  name="how" id="how" min="200" max="999999" placeholder="200">
  <input type="button" value="Calcul" onclick="summa()" />

Calc.php用于检查:

<?php
  $a = is_numeric($_POST["how0"]);
  $a = floor($a);
if ($a>1) {
    $a = $a * 2;
}
if ($a>10000) {
    $a = $a * 3;
}
echo $a;

?>

1 个答案:

答案 0 :(得分:3)

这一行:

$a = is_numeric($_POST["how0"]);

is_numeric的返回值指定为$a - 例如truefalse。然后使用$a,就好像它包含发布到脚本的值,但它没有。

您可能打算使用intvalfloatval或类似内容:

$a = intval($_POST["how0"]);

请注意,除非您需要支持真正旧浏览器,否则您无需使用getXmlHttp功能。所有模糊的现代浏览器都支持new XMLHttpRequest