/*
* 判断图片类型
*/
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
版权声明:本文为博主原创文章,转载请附上博文链接!
原文地址:https://www.cnblogs.com/asdyzh/p/9824693.html