Javascript verification the type of the uploaded file must be limited to some format_javascript skills

Source: Internet
Author: User
There are many ways to verify the file type to be uploaded. In this article, we will introduce in detail how js implements The Code is as follows:


// Verify the file format
Function validateFile (){
Var fileObject = $ ("# filename ");
Var errorObject = $ ("# error ");
Var filepath = fileObject. val ();
Var fileArr = filepath. split ("//");
Var fileTArr = fileArr [fileArr. length-1]. toLowerCase (). split (".");
Var filetype = fileTArr [fileTArr. length-1];
If (filetype! = "Xls" & filetype! = "Xlsx" & filetype! = "Doc" & filetype! = "Docx"
& Filetype! = "Jpeg" & filetype! = "Jpg" & filetype! = "Ppt" & filetype! = "Pptx"
& Filetype! = "Txt" & filetype! = "Bmp" & filetype! = "Png" & filetype! = "Gif "){
FileObject. focus ();
ErrorObject.html ("the uploaded file must be an image, doc, ppt, xls, or txt file! ");
} Else {
ErrorObject. remove ();
}
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.