JS判断上传文件类型
Posted asdyzh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS判断上传文件类型相关的知识,希望对你有一定的参考价值。
/*
* 判断图片类型
*/
function checkImgType(ths){
if (ths.value == "") {
alert("请上传图片");
return false;
} else {
if (!/.(gif|jpg|jpeg|png|GIF|JPG|PNG)$/.test(ths.value)) {
alert("图片类型必须是.gif,jpeg,jpg,png中的一种");
ths.value = "";
return false;
}
}
return true;
}
[js] view plain copy
/*判断上传文件是否为Excel文件
*/
function LimitAttach() {
var file=document.getElementById("files").value;
var form1=document.getElementById("form1");
var ext = file.slice(file.lastIndexOf(".")+1).toLowerCase();
if ("xls" != ext) {
alert("只能上传Excle文件");
return false;
}
else {
form1.action="fupload.action?files="+file;
form1.submit();
}
}
---------------------
作者:mikyz
来源:CSDN
原文:https://blog.csdn.net/mikyz/article/details/69397023
版权声明:本文为博主原创文章,转载请附上博文链接!
以上是关于JS判断上传文件类型的主要内容,如果未能解决你的问题,请参考以下文章