在基本标签上使用文件名时为什么ajax帖子不起作用?

时间:2016-10-19 09:54:27

标签: javascript php jquery ajax

为什么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">

0 个答案:

没有答案