您好,我已经在整个网站上搜索了一个解决方案,找到了一些东西,但没有让它工作。
-我在页面的头部区域有主要功能。(这将从 PHP 中返回数据)
- 我需要这个数据作为变量,但不知道如何处理。
function note(content,usern){
note = Function("");
$.ajax({
type: "POST",
url: "note.php",
data: {'token': content, 'user': usern }, success: function(data){ var myneededvar = data; }, }); }
好的,这有效,并且数据也被给出现在我像这样在脚本中调用函数
note(token,notename);
我需要结果 myneededvar
但不能让它工作。