我试图简单地从 jQuery $.get() 调用中获取响应,并将其存储到变量中。事实证明,这比我想象的要困难得多。这是我的代码:
var response;
$.get(("action.php?action=addFolder&folderName=" + input),
function(data, status){
response = data
}
);
return response;
但响应总是未定义或为空。我怎样才能解决这个问题?