这是我的代码:
window.onload = function () {
var url = "http://localhost:62744/sales.json";
var request = new XMLHttpRequest();
request.open("GET", url);
request.onload = function () {
if (request.status == 200) {
updateSales(request.respondText);
}
};
request.send(null);
}
function updateSales(responseText) {
var salesDiv = document.getElementById("sales");
salesDiv.innerHTML = responseText;
}
当我尝试运行代码时," HTTP错误403.14-Forbidden"出现。 我是第一次使用Microsoft WebMatrix,问题可能是软件而不是代码。 有人可以帮助我吗?