1

Possible Duplicate:
Javascript: Listing File and Folder Structure

I have a folder who contains two other folders. I know the name of one of them, but not the second. Is it possible to get this name with jQuery or Javascript ? My script file is on the root (on the main/parent folder).

example:

main_folder (name = theme)
-> children_folder_1 (name = origin)
-> children_folder_2 (name = ?)
4

1 回答 1

2

如果您的意思是在 Web 浏览器中运行的 JavaScript 代码并找出服务器上其他文件夹的名称,不,没有(合理的)方法可以做到这一点。

(不合理的方法是做一堆 ajax 请求,猜测另一个文件夹的名称是什么,通过各种字母数字组合等工作,处理 404 直到它幸运。就像我说的那样,不合理。你d 必须具有该文件夹中资源的名称,除非它支持默认文档。)

于 2012-11-28T14:29:24.967 回答