我还不是 JSON/AJAX 大师,所以我不知道该怎么做。
我需要一个 $_SESSION['name'] PHP 变量在我的 jQuery 东西中使用,但我不知道如何访问它......考虑:
// the 'who is typing' shindig
$.ajax(
{
url: "whos_typing.html",
cache: false,
success: function(whos)
{
// here I need to access $_SESSION['name'] and do stuff with it
$("#soandso").html(whos); //Insert who's typing into the #soandso
}
});