Js allows you to preview uploaded images. js allows you to preview uploaded images.

Source: Internet
Author: User

Js allows you to preview uploaded images. js allows you to preview uploaded images.

This document describes how to preview uploaded images in JavaScript. Share it with you for your reference. The specific implementation method is as follows:
Copy codeThe Code is as follows: function PreviewImage (imgFile)
{
Var filextension = imgFile. value. substring (imgFile. value. lastIndexOf ("."), imgFile. value. length );
Filextension = filextension. toLowerCase ();
If (filextension! Your '.jpg ') & (filextension! Using '.gif ') & (filextension! Using '.jpeg ') & (filextension! Using '.png ') & (filextension! Using '.bmp '))
{
Alert ("sorry, the system only supports photos in the standard format. Please adjust the format and upload it again. Thank you! ");
ImgFile. focus ();
}
Else
{
Var path;

If (document. all) // IE
{
ImgFile. select ();
Path = document. selection. createRange (). text;

Document. getElementById ("imgPreview"). innerHTML = "";
Document. getElementById ("imgPreview "). style. filter = "progid: DXImageTransform. microsoft. alphaImageLoader (enabled = 'true', sizingMethod = 'Scale', src = \ "" + path + "\") "; // use the filter effect
}
Else // FF
{
Path = imgFile. files [0]. getAsDataURL ();
Document. getElementById ("imgPreview "). innerHTML = " ";
// Document. getElementById ("img1"). src = path;
}
}
}

Call:
Copy codeThe Code is as follows: upload an image: <input type = "file" name = "file"
Style = "width: 200px; height: 20px;" onchange = "PreviewImage (this)" id = "upload"/>

<Div id = "imgPreview" style = "width: 120px; height: 100px; margin-left: 280px;">
</Div>

Shows the running effect:

I hope this article will help you design javascript programs.

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.