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

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

    var file = form.getForm().findField("file").getValue();
    var fileLen = file.length;
    var lastValue = file.substring(fileLen - 3, fileLen);
    if (lastValue == 'doc') {//check same for other file format}
    

提交回复
热议问题