input file多个文件上传基本教程
2021-03-07 12:27
阅读:501
现在有市面很多上传的插件,功能都很完善。但是也有其缺点:就是影响网站页面的性能,下面介绍的是使用input的file类型进行文件的上传。这种上传方法适合做简单上传功能的效果。
不废话甩代码
HTML:
javascript:
限制图片上传个数3张
function fileCountCheck(objForm) {
if(window.File && window.FileList) {
var fileCount = document.getElementById("input").files.length;
if(fileCount > 3) {
window.alert(‘文件数不能超过3个,你选择了‘ + fileCount + ‘个‘);
return false;
}
} else {
window.alert(‘抱歉,你的浏览器不支持FileAPI,请升级浏览器!‘);
}
}
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:input file多个文件上传基本教程
文章链接:http://soscw.com/index.php/essay/61328.html
文章标题:input file多个文件上传基本教程
文章链接:http://soscw.com/index.php/essay/61328.html
评论
亲,登录后才可以留言!