我有一个 AJAX 调用事件来txt_RollNo
从数据库中获取,并将其填入, , 。blur
std_name
Class
age
txt_name
txt_class
txt_age
在一次调用中,我可以将name
, class
, age
all 作为一个整体放在数组或任何一个中,如何将它分开。
$("#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;
?>