gpt4 book ai didi

php - Ajax php jquery

转载 作者:行者123 更新时间:2023-12-01 06:37:17 26 4
gpt4 key购买 nike

我对 txt_RollNoblur 事件进行了 AJAX 调用,以引入 std_name,Class,age 从数据库中填入txt_name,txt_class,txt_age

在一次调用中,我可以将 nameclassage 作为一个整体放入数组或任何数组中,如何将它们分开。

$("#txt_RollNo").blur(function(){   
$.ajax({
url:'getSudent.php',
data:'stdID='+ $(this).val().trim(),
success:function(array_from_php)
{
//but here i m receiving php array, how deal in jquery
//$("#txt_name").val(array_from_php);
//$("#txt_Class").val(array_from_php);
//$("#txt_age").val(array_from_php);

}
})
});
<小时/>

getSudent.php 回显数组如下

<?php   
$qry=mysql_query("select * from students where studentID='".$_GET['std_ID']."'");
$row=mysql_fetch_array($qry);
echo $row;
?>

最佳答案

PHP:

<?php
header('Content-type: application/json');
$qry=mysql_query("select * from v_shop where shop_no='".$_GET['shopno']."'");
$row=mysql_fetch_array($qry);
echo json_encode($row);
?>

JavaScript

...
$.ajax({
dataType: 'json',
...
success:function(array_from_php){
console.log(array_from_php); // WTF is this?

参见 json_encode :http://php.net/manual/en/function.json-encode.php

关于php - Ajax php jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11582649/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com