gpt4 book ai didi

javascript - 从 Jquery AJAX 调用返回响应

转载 作者:可可西里 更新时间:2023-11-01 02:39:56 27 4
gpt4 key购买 nike

<分区>

我写了一个函数,它必须检查用户名是否已被占用。现在,当我从另一个函数调用该函数时,并提醒它的返回值:

 alert(checkusernameavailable('justausername')); 

它说“未定义”。我到处搜索,但找不到我做错了什么。我想它应该只返回 check.php 中的 php-echo,但它没有。这是我写的函数:

var checkusernameavailable = function(value)  {    $.ajax({      url: "check.php",      type: "POST",      async: false,      cache: false,      data: "username=" + value + "",      success: function(response) {        alert(response);        return response;              },      error: function() {        alert('ajax error');      }    });  } 

我做错了什么?

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com