file中限定文件类型

来源:互联网 发布:mac chrome 导入书签 编辑:程序博客网 时间:2024/05/01 13:40

 

<!--<html:file property="uploadFile1" size="25"  onchange="checkCsv1();"></html:file>  -->

 

function checkCsv1(){
  var filepath = document.getElementById("uploadFile1").value;
  filepath=filepath.substring(filepath.lastIndexOf('.')+1,filepath.length);
  if(filepath != 'csv') {

  alert("只能上传CSV格式的图片");
  document.getElementById("uploadFile1").outerHTML += '';

}
  }

原创粉丝点击