我正在研究 jquery ajax。我使用的代码如下:
var url = baseurl +"/index.php/users/ajaxwixusers";
var dataStringfirst = 'wixuserid='+ instanceId;
$.ajax({
//dataType : 'html',
type: 'GET',
url : url,
data : dataStringfirst,
complete : function() { },
success: function(data)
{
alert(data);
window.location.href="http://localhost:81/customers/index.php/acappointments/appointuseroverlay/user_id/203";
}
});
在 PHP 文件中,我得到的值为:
echo $user_id = $wixuser->id;
我想在成功时返回这个值。当我试图提醒ajax的输出时。
它返回文件的完整 HTML。如何只返回值而不是完整的 HTML?