我正在尝试使用脚本显示.csv
文件并进行内容过滤和搜索。
我找到了this script on github:
我想将此脚本放在我的网络服务器(apache)上。
这很好,但是,我希望它能够与位于同一文件夹中的一个或多个.csv
文件一起使用。
我的目标是在加载index.html时,它直接在.csv
中硬编码的路径中显示(并处理)index.html.
文件
.csv
文件位于index.html
所在文件夹中的子文件夹中(如./files/document.csv
)
简而言之:
我的猜测是需要更改的代码将是index.html中的代码:
<div class="container">
<form class="form">
<input type=file id=files name=files[] class='btn'/>
<output id=list></output>
答案 0 :(得分:1)
在评论中回答,这是一个片段:
谢谢,我用这个代码加载了它:代码:function ajax(a,b,c){//url,function,just a placeholder c=new XMLHttpRequest; c.open('GET',a); c.onload=b; c.send() } function alertTxt(){ alert(this.response) } window.onload=function(){ ajax('bad.csv') }