我尝试用Javascript(JQuery)读取本地文本文件。使用以下代码。
$.ajax({
type: 'GET',
url: 'file:///C:/Users/kola/Desktop/b/data_file_text',
error: function(e)
{
console.log(e);
},
success: function(e)
{
console.log(e.responseText);
}
});
执行结束时,触发了错误方法。访问参数(e)返回。我有以下Jquery对象。
readyState: 4
responseText: "My Expected Data"
status: 200
statusText: "OK"
....
为什么它会触发错误,一切似乎都好。我错过了什么吗? 谢谢。