我正在请求一个页面:
$.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加载会失败?
答案 0 :(得分:0)
我将此添加到AJAX请求中,问题解决了:
mimeType: "text/html"