AJAX:HTML5-doctype的语法错误

时间:2014-03-30 13:58:39

标签: ajax html5

我正在请求一个页面:

        $.ajax({
            type    : "GET",
            cache   : true,
            url     : './'+filename,
            dataType: "html",
            async:    false,
            // Put content in document
            success: function(response){

                console.log(response);
                return;
            }
        });

因此,如果我使用上面的代码加载页面,我将在控制台中收到一条错误消息:“Syntax-Error:test.html:1”。 test.html中的第1行是<!doctype html>。这个HTML5-doctype有什么问题?如果我使用这个doctype,为什么我的AJAX加载会失败?

1 个答案:

答案 0 :(得分:0)

我将此添加到AJAX请求中,问题解决了:

mimeType: "text/html"