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

前端 未结 8 2084
情深已故
情深已故 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:04

    Try this

     $('#resume_link').click(function() {
            var ext = $('#resume').val().split(".").pop().toLowerCase();
            if($.inArray(ext, ["doc","pdf",'docx']) == -1) {
                // false
            }else{
                // true
            }
        });
    

    Hope it will help

提交回复
热议问题