私は次のコードを持っています:
$("#get_details").click(function(){
name = $("#user_name").val();
var age,gender;
$.post("users.php", { name: name },
function(data){
if (data.status == 'success'){
age = data.message[0];
gender = data.message[1];
alert(age); //getting output
}
}, "json");
alert(age);//doesn't getting output
});
これらの値に外部からアクセスしたいのですが$.post()
、このために何を変更する必要がありますか?