我直接打开本地的html文件 ,不是通过 http协议的,是通过 file在浏览器中打开,这个html里有一段ajax异步去读本地的一个文本文件 ,、如:
$.ajax({
type: 'get',
url: xmlfile,
dataType: 'text',
success: function (data) {
alert(data);
var ss = data.split('|');
var html = "";
for(var i=0; i<ss.length;i++)
{
html+="<img src='"+ss[i]+"' style='width:100%; height:100%;'></img>";
}
$("#control_${val.objId}").html(html);
InitdynamicCycle();
}
});
这代码在ie10下面能正常运行,但在IE11以及谷歌等 浏览器里就无法 运行,这个不知道怎么解决,或者 说还有什么办法来读取本地的数据 文件
我也遇到过,这个跟踪jquery的脚本会发现在IE11下是“无权访问”