Allow only pdf, doc, docx format for file upload?

前端 未结 8 2043
情深已故
情深已故 2020-12-24 13:18

I am triggering a file upload on href click.
I am trying to block all extension except doc, docx and pdf.
I am not getting the correct alert value.

&         


        
8条回答
  •  生来不讨喜
    2020-12-24 14:11

    $('#surat_lampiran').bind('change', function() {
      alerr = "";
      sts = false;
      alert(this.files[0].type);
      if(this.files[0].type != "application/pdf" && this.files[0].type != "application/msword" && this.files[0].type != "application/vnd.openxmlformats-officedocument.wordprocessingml.document"){
      sts = true;
      alerr += "Jenis file bukan .pdf/.doc/.docx ";
    }
    });

提交回复
热议问题