JS implementation of picture Preview and Formdata upload __js

Source: Internet
Author: User
1. HTML
<!--preview picture-->
<div class= "File-image" > 
</div>

<!--add picture-->
<div class= "file-btn" >
  add Picture
  <input type= "file" @change = "AddImage" id= " File ">
</div>

<!--upload image-->
<button> upload </button>
Preview Picture js
var file;

var addimage = function () {
    file = JQuery ('. file ') [0].files[0];
    Add a picture path to the IMG src to preview
    jQuery (' #iamge '). attr (' src ', getobjecturl (file));
    Different browsers under different path
     function Getobjecturl (file) {
          var url = null;
          if (window.createobjecturl!= undefined) {//basic
            URL = window.createobjecturl (file);
          } else if (window. URL!= undefined) {//Mozilla (firefox)
            url = window. Url.createobjecturl (file);
          else if (window.webkiturl!= undefined) {//WebKit or chrome
            URL = window.webkitURL.createObjectURL (file);
          return
          URL;
        }
using formdata upload image js
 var imgdata = new FormData ();
 Imgdata.append ("img", file); Upload Jquery.ajax using Ajax ({type: "Put", Url:url, Data:imgdata, Async:false, cache : false, Contenttype:false, Processdata:false, success:function (data) {alert ("Upload succeeded"
        ); }, Error:function (JQXHR) {alert ("Upload Failed"}}) 

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.