Pre-upload JavaScript images (compatible with all browsers)

Source: Internet
Author: User

Function description

Local previews of images via JavaScript (no uploading to the server), compatible with all browsers (ie6&ie6+, Chrome, Firefox).

Implementation Essentials

For Chrome, Firefox, IE10 use FileReader.

For ie6~9, use filter filter:progid:DXImageTransform.Microsoft.AlphaImageLoader to implement.

 <!DOCTYPE HTML>   <HTML>  <Head>  <Metahttp-equiv= "Content-type"content= "Text/html;charset=utf-8" />  <styletype= "Text/css">#preview,. IMG, img{width:200px;Height:200px;   }#preview{Border:1px solid #000;  }   </style>   </Head>  <Body>   <DivID= "Preview"></Div>  <inputtype= "File"onchange= "Preview (this)" />   <Scripttype= "Text/javascript">     functionPreview (file) {varPrevdiv=document.getElementById ('Preview'); if(File.files&&file.files[0])   {   varReader= NewFileReader (); Reader.onload= function(evt) {prevdiv.innerhtml= '' +Evt.target.result+ '"/>'; } reader.readasdataurl (file.files[0]); }   Else{prevdiv.innerhtml= '<div class= "img" style= "Filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (sizingmethod=scale,src= \ '' +File.value+ '\ ' "></div>'; }   }   </Script>   </Body>   </HTML>

Pre-upload JavaScript images (compatible with all browsers)

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.