JS control fileupload Upload File type instance code _javascript tips

Source: Internet
Author: User

The JS code is as follows:

function Checkfile (obj) { 
  var array = new Array (' GIF ', ' jpeg ', ' png ', ' jpg ');//Can be uploaded file type 
  if (Obj.value = = ") {
  alert ("Let's choose the picture to upload!"); 
    return false; 
  } 
  else { 
    var filecontenttype = Obj.value.match (/^ (. *) (\.) (. {1,8}) $/) [3]; This file type is useful: 
    var isexists = false; 
    for (var i in array) { 
      if (filecontenttype.tolowercase () = = Array[i].tolowercase ()) { 
        isexists = true; 
        return true; 
      } 
    if (isexists = = False) { 
      obj.value = null; 
      Alert ("Incorrect upload image type!"); 
      return false; 
    } 
    return false; 
  } 

asp.net foreground code is as follows:

<asp:fileupload id= "FileUpload1" runat= "Server" onchange= "Checkfile" (this); " />

The above is small series for everyone to bring the JS control fileupload upload File type instance code all content, I hope we support cloud Habitat Community ~

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.