为什么ajax帖子在使用时不起作用 <{1}}
url: 'filename.php',
?
这是我的ajax邮政编码。
<base href="//example.com">
它无效,它显示错误
<script>
function send_username_value_for_check_available() {
$.ajax({
url: 'test.php',
type: 'POST',
data: $('#username_send_value_fid').serialize(),
cache: false,
success: function (data) {
$('#mySpan_username').show();
$('#mySpan_username').html(data);
}
});
}
</script>
但是当我删除
XMLHttpRequest cannot load https://example.com/test.php. Response for preflight is invalid (redirect)
来自<base href="//example.com">
我的ajax帖子会很好用^ _ ^
我想知道如何在<head></head>
上使用ajax帖子url: 'filename.php',
?
<base href="//example.com">