我正在创建一个程序来使用 JQuery 的 ajax 方法访问本地文件。
该程序在 IE11 及旧版本中正常运行,但在 Microsoft Edge 浏览器中失败。
它显示相同的“网络错误”并转到 Microsoft Edge 中的错误部分。
有人可以让我知道相同的解决方法吗?
这是我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="js/jquery-1.11.3.min.js"></script>
<script>
$("document").ready(function(){
BrandAllMenu();
});
function BrandAllMenu() {
var xmlPath = "branding.xml";
$.support.cors = true;
$.ajax({
type: "GET",
url: xmlPath,
async: false,
dataType: "xml",
success: function () {
alert("in");
},
error: function (jqXHR, textStatus, errorThrown) {
alert("jqXHR: " + jqXHR.status + " Response text : "+ jqXHR.responseText);
alert("Menu XML test status: " + textStatus);
alert("Menu XML: " + errorThrown)
}
});
}
</script>
</head>
<body>
</body>
</html>