意外的令牌<阿贾克斯

时间:2014-12-20 14:00:07

标签: jquery ajax

Unexpected token < {stack: (...), message: "Unexpected token <"}

我想调用一个Ajax函数,但我得到了这个错误......

<script type="text/javascript">
    $(document).ready(function() {
    var interval = setInterval(function(){
        $.ajax({
            url     :'index.php?module=Page&action=Mandats',
            type    : 'post',
            timeout : 3000,
            data    : $(this).serialize(),
            dataType: 'json',
            success : function (data, status, xhr){ 
                alert(status);
                },
            error   : function (xhr, status, error){
                console.log(xhr);
                console.log(status);
                console.log(error);
            }
        });
    }, 1000);
    });
</script>

你知道为什么吗?

0 个答案:

没有答案