input file,javascript, jquery判断文件类型,在input中设置accept属性只是好看,求两种代码,方便大家

百度答案是有,取value值,判断.后面的字符啊,正则表达式判断,神马神马的。求稍微标准有说服的答案。... 百度答案是有,取value值,判断.后面的字符啊,正则表达式判断,神马神马的。求稍微标准有说服的答案。 展开
 我来答
百度网友acfb1c5
推荐于2018-03-28 · TA获得超过657个赞
知道小有建树答主
回答量:298
采纳率:0%
帮助的人:275万
展开全部

下面是我用jquery写的选中后立马判断选中的文件的类型,不是的话提示,然后清除,对应的可以自己改成纯js形式:

 //文件上传文件选择后事件
 $(document).ready(function() {
  $("input[id^='fileToUpload']").each(
//这里是用了each因为是多文件上传,input的id都是fileToUpload  开头
    function() {
 $("#" + $(this).attr("id") + "").live('change',function() {
 var fileName = $(this).val();
 if (fileName != null&& fileName != "") {
  //lastIndexOf如果没有搜索到则返回为-1
  if (fileName.lastIndexOf(".") != -1) {
   var fileType = (fileName.substring(fileName.lastIndexOf(".") + 1,
  fileName.length)).toLowerCase();
   var suppotFile = new Array();
   suppotFile[0] = "jpg";
   suppotFile[1] = "gif";
   suppotFile[2] = "bmp";
   suppotFile[3] = "png";
   suppotFile[4] = "jpeg";
   for ( var i = 0; i < suppotFile.length; i++) {
    if (suppotFile[i] == fileType) {
if (fileName.length > 100) {
 alert("文件名长度不能超过100字符");
 if (!window.addEventListener) {      
    document.getElementById(fileName[j]).outerHTML+='';  //IE清除inputfile
    }else { 
     document.getElementById(fileName[j]).value = "";   //FF清除inputfile
    } 
 return false;
}
return true;
 } else {
continue;
 }
 }
  alert("文件类型不合法,只支持 jpg、gif、png、jpeg类型!");
    if (!window.addEventListener) {      
    document.getElementById(fileName[j]).outerHTML+='';  //IE
    }else { 
     document.getElementById(fileName[j]).value = "";   //FF
    } 
   return false;
  } else {
   alert("文件类型不合法,只支持 jpg、gif、png、jpeg类型!");
    if (!window.addEventListener) {      
    document.getElementById(fileName[j]).outerHTML+='';  //IE
    }else { 
     document.getElementById(fileName[j]).value = "";   //FF
    } 
   return false;
  }
 }
});
});
});
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式