我正在尝试使用JQuery $ .get函数从php文件返回一个字符串值。我有一个变量设置为全局值。我的php文件将回显$ word(这是我想要的结果。)在我的函数中我做了一个显示值的测试打印,但是当我在函数外面尝试相同的测试打印时,它表示未定义。谁能告诉我,我做错了什么?
$.post("getWord.php", "",
function(data)
{
toGuess= data;
console.log("Choose the " + toGuess + " letters");
}
);
// Add it to the list of words received.
console.log("Choose the " + toGuess + " letters");