PHP imitation WeChat multi-image upload preview function sample code

Source: Internet
Author: User
Tags silverlight
This article mainly introduces the PHP imitation multi-image Preview upload method related information, the need for friends can refer to the following

Production picture area, upload button #btn can replace the picture you want

<ul id= "Ul_pics" class= "Ul_pics clearfix" >  <li></li> </ul>

Plupload Upload

var uploader = new Plupload. Uploader ({//Create instance Construction method runtimes: ' Html5,flash,silverlight,html4 ',//upload plugin Initialize the order of precedence in that way Browse_button: ' btn ',//Upload button U RL: "ajax.php",//Remote upload address flash_swf_url: ' plupload/moxie.swf ',//flash file address silverlight_xap_url: ' plupload/moxie.xap ',/ /silverlight File Address filters: {max_file_size: ' 10mb ',//MAX upload file size (format 100b, 10kb, 10MB, 1GB) Mime_types: [//Allow file upload type {ti Tle: "Files", Extensions: "Jpg,png,gif,jpeg"}]}, Multi_selection:true,//true:ctrl multiple file uploads, false single file upload init: {Fil Esadded:function (up, files) {//file before uploading if ($ ("#ul_pics"). Children ("Li"). Length >) {alert ("You've uploaded too many pictures!").     ");    Uploader.destroy ();     } else {var li = '; Plupload.each (Files, function (file) {//traversal file Li + = "<li id= '" + file[' id ') + "' ><p class= ' progress ' ><s     Pan class= ' bar ' ></span><span class= ' percent ' >0%</span></p></li> ";     });     $ ("#ul_pics"). Prepend (LI);    Uploader.start (); }}, Uploadprogress:fuNction (up, file) {//on crosses, show progress bar var percent = file.percent;    $ ("#" + file.id). Find ('. Bar '). css ({"width": percent + "%"});   $ ("#" + file.id). Find (". Percent"). Text (Percent + "%");    }, Fileuploaded:function (up, file, info) {//File upload succeeds when uploading var data = eval ("(" + Info.response + ")");//Parse the returned JSON data $ ("#" + file.id). HTML ("<input type= ' hidden ' name= ' pic[] ' value= '" + data.pic + "'/><input type= ' hidden ' name= ' pic_name[] ' value= ' + data.name + '/> ");//Append picture}, Error:function (up, err) {////Upload Error trigger alert (err.message); }  } }); Uploader.init ();

Ajax to delete uploaded pictures

function Delpic (pic, file_id) {//delete picture parameter 1 picture Path parameter 2 random number  if (Confirm ("OK to delete? ") {   $.post (" del.php ", {pic:pic}, function (data) {    $ (" # "+ file_id). 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.