gpt4 book ai didi

Javascript - 检索文件夹中文件的名称

转载 作者:数据小太阳 更新时间:2023-10-29 03:50:37 25 4
gpt4 key购买 nike

我有一个要求,我需要从客户端的文件夹中检索所有文件名。

因此,我尝试使用 Jquery 引用 this answer 来检索文件夹中文件的名称.

我的代码如下:

    <script>
var fileExt = ".xml";

$(document).ready(
function(){
$.ajax({
//This will retrieve the contents of the folder if the folder is configured as 'browsable'
url: 'xml/',
success: function (data) {
$("#fileNames").html('<ul>');
//List all xml file names in the page
$(data).find('a:contains(" + fileExt + ")').each(function () {
var filename = this.href.replace(window.location, "").replace("http:///", "");
$("#fileNames").append( '<li>'+filename+'</li>');
});
$("#fileNames").append('</ul>');
}
});
});

</script>

HTML代码如下:

<div id="fileNames"></div>

但是当我在 chrome 和 firefox 中运行代码时出现以下错误:

chrome: XMLHttpRequest cannot load file:///E:/Test/xml/. Received an invalid response. Origin 'null' is therefore not allowed access.

Firefox: ReferenceError: $ is not defined

我尝试了很多谷歌搜索,但错误没有解决。

非常感谢您的帮助。

最佳答案

<html>
<body>
<div id='fileNames'></div>
</body>
<script src="js/jquery.js"></script>

<script type="text/javascript">
$(document).ready(function ()
{
$.get(".", function(data)
{
$("#fileNames").append(data);
});
})
</script>

这将打印网页上文件夹中的所有文件。

关于Javascript - 检索文件夹中文件的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29340664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com