当我调用ajax获取javascript文件中所有图像的列表时,出现此错误。 禁止您无权访问此服务器上的/nyetnet.com/test/nyetnet.com/test/images/。此外,尝试使用ErrorDocument处理请求时遇到403 Forbidden错误。
我的代码正在关注。
...
var getMediaList = function() {
// ----------------------- Get ImageList -----------------------------
var dir = "./images/";
var fileextension = ".png";
$.ajax({
//This will retrieve the contents of the folder if the folder is configured as 'browsable'
url: dir,
success: function (data) {
//List all .png file names in the page
$(data).find("a:contains(" + fileextension + ")").each(function () {
var filename = this.href.replace(window.location.host, "").replace("http://", "");
$("body").append("<img src='" + dir + filename + "'>");
});
}
});
// --------------------------------------------------------------------
};
我如何解决它?