下面给出了读取子文件夹的代码
function countFolder(){
var dir='albums';
var count=0;
alert(dir);
$.ajax({
url: dir,
async:false,
success: function (data) {
$(data).find("a:contains(" + 'album' + ")").each(function () {// function to read foldera name contains 'album'
count++;
//alert(url);
});
}
});
return count;
}
当我在 localhost 上使用此代码时,它运行完美。但是在本地运行(即从文件位置)时它不会运行。我有 12 个子文件夹。因此,当我使用 localhost 时,我得到 12 的输出,但是在本地运行时,我只得到 0 的输出。
会有什么问题?请帮助我.. 我是 jQuery 新手。因此,如果是我的错误,请通知它。在代码中我只使用 html、jQuery、js,而不是 php。