在我的 php 文件“login_success.php”中,我有一个变量$_COOKIE["user"]
是否有可能在 jQuery Ajax 语句中返回该变量,例如这个。我用 Var UserName = 做了一个猜测:
function StartAjax(NameID){
$.ajax({
type: "POST",
url: "login_success.php",
cache: false,
data: "name=Peter&location=Sheffield",
success: function(html, status){
$("#"+NameID).append(html);
//$('#status').append(status);
var userName =
}
});