在下面的代码中,$.POST 方法将两个变量传递给 php 文件 empProfile.php,该文件从数据库中检索员工个人资料。知道我想从 php 文件接收 ID 和 Name 到 jquery 变量。有人能帮我吗。
data = {
personnelNo: $('#personnelNo').val(),
cnic: $('#cnic').val()
} //end of data
$.post(
"checkEmployee.php",
data,
function(data) {
var ID =; Name=;
} // end of function
); // end of post
//} //end of if statement
}); // end of blur