我是javascript的新手,我到处都搜索过这个问题,但没有合适的答案。 我有一个" code.php"页面
$query = "SELECT * FROM users WHERE id=1";
$result= mysqli_query($con,$query);
$row=mysqli_fetch_array($result);
echo $row[1];
另一方面是" index.php"我有
<h1>"the value for number is: " <span id="myText"></span></h1>
function myFunction() {
document.getElementById("myText").innerHTML = $row[1];
}
我想将$row[1]
的{{1}}加载到code.php
。
我知道我必须使用ajax但是如何?
答案 0 :(得分:2)
在索引php中使用ajax从代码php中获取数据。 这是一个例子:
<script>
$.ajax({
url: 'code.php',
type:'get',
success:function(data){
$("#myText").html(data);
}
});
</script>
答案 1 :(得分:1)
<script>
$(document).ready(function(){
$.ajax({
type:'get',
url:'code.php',
success:function(response){
// ajax will assign the result of code =,php into response
document.getElementById("myText").innerHTML = response; //response;
}
});
});
</script>
将其放在index.php的标题
您可以在线找到更多教程,以便更好地了解ajax
别忘了下载jquery并将其嵌入代码中 https://jquery.com/download/
或者你可以复制这个
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">