如何从responseText属性中提取数字值?

时间:2019-10-19 10:57:17

标签: javascript php ajax

我在使用简单的Ajax / JavaScript / PHP时遇到麻烦。我正在使用Ajax调用生成随机数的PHP脚本。

我已经成功地调用了脚本并显示了元素内的随机数。

但是问题是,我需要将该数字用于以后的计算,而且我不知道如何将xhttp.responseText转换为数字并将其存储在var中。

我从.responseText获得的全部是Nanundefined或本例中的<p id = "number">VALUE</p>

有人可以帮忙吗?

这是完整的代码:

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <button id= "btn" type="button" onclick="loadDoc()">Generate number</button>
    <div id="random">
        <p id = "number"></p>
    </div>
    <script src = "javascript.js"></script>
</body>
</html>

function loadDoc() {
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
        if (this.readyState == 4 && this.status == 200) {
            document.getElementById("number").innerHTML =
            xhttp.responseText;
        }
    };
    xhttp.open("POST", "script.php", true);
    xhttp.send();
    console.log(number);
}

//PHP

<?php
    function getRandom(){
        $rand = rand(1,16);
        return $rand;
    }
    echo getRandom();
?>

2 个答案:

答案 0 :(得分:0)

将您的php代码更改为

<?php
function getRandom(){
    $rand = rand(1,16);
    return $rand;
}
echo getRandom();
?>

您没有从php返回任何内容。在getRandom()函数之前添加echo

//New Edit
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<button id= "btn" type="button" onclick="loadDoc()">Generate number</button>
<div id="random">
    <p id = "number"></p>
    <input type='hidden' id="number_1" value='0' />
</div>
<script src = "javascript.js"></script>
</body>
</html>

<script>
    function loadDoc() {
      var xhttp = new XMLHttpRequest();
      xhttp.onreadystatechange = function() {
        if (this.readyState == 4 && this.status == 200) {
          document.getElementById("number").innerHTML = xhttp.responseText;
          document.getElementById('number_1').value = xhttp.responseText; //This sets the value in hidden field and you can use it later.
          alert(document.getElementById('number_1').value);
        }
      };
      xhttp.open("POST", "script.php", true);
      xhttp.send();
      console.log(number);
    }
</script>

答案 1 :(得分:0)

要从字符串中解析数字,请使用js函数parseInt()。并可能检查您的php返回什么