jquery 怎么实现获取文件夹里的文件

jquery 怎么实现获取文件夹里的文件,第1张

jquery中实现获取文件夹里文件采用遍历的方法。

function handleFileSelect(evt) {

var files = evt.target.files// FileList object

// Loop through the FileList

for (var i = 0, ff = files[i]i++) {

var reader = new FileReader()

// Closure to capture the file information.

reader.onload = (function(theFile) {

return function(e) {

// Print the contents of the file

var span = document.createElement('span')

span.innerHTML = ['<p>',e.target.result,'</p>'].join('')

document.getElementById('list').insertBefore(span, null)

}

})(f)

// Read in the file

//reader.readAsDataText(f,UTF-8)

//reader.readAsDataURL(f)

reader.readAsText(f)

小项目使用jquery-2.0.0.min.js就可以了,这个是简化版本,假如在webroot目录下建立一个名为JS文件夹,在a.jsp中加入这样的语句就可以了<script type="text/javascript" language="javascript" src="./js/jquery-1.7.2.min.js" ></script>可以到http://download.csdn.net/download/siyupy_888/5552669下载jquery +ajax的源码实例


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/7978536.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-12
下一篇 2023-04-12

发表评论

登录后才能评论

评论列表(0条)

保存