Jquery ajaxupload: No refreshing file Upload

Source: Internet
Author: User
The code is as follows: Copy code

The usage is as follows:

<Script type = "text/javascript">

$ (Function (){
Var button = $ ('# upload ');
New AjaxUpload (button ,{
Action: '/upload/imagesAjaxUpload ',
Name: 'upload ',
OnSubmit: function (file, ext ){
If (! (Ext &/^ (jpg | jpeg | JPG | JPEG) $/. test (ext ))){
Alert ('the image format is incorrect. Select a jpg file! ', 'System prompt ');
Return false;
                }

// Change button text, when user selects file
Button. text ('uploading ');

// If you want to allow uploading only 1 file at time,
// You can disable upload button
This. disable ();

// Uploding-> Uploading.-> Uploading...
Interval = window. setInterval (function (){
Var text = button. text ();
If (text. length <10 ){
Button. text (text + '...');
} Else {
Button. text ('uploading ');
                    }
},200 );
},
OnComplete: function (file, response ){
Window. clearInterval (interval );
  
// Enable upload button
This. enable ();
Var json = eval ('+ response + ')');
Button. text ('select file ');
$ (". Qr" ).css ("display", "inline ");
$ (". Qr> img"). attr ("src", json. file_name );
$ ("Input [name = 'WeChat _ qr ']"). val ('/uploads/qr/'+ json. file_name );
// Alert (json. file_name );
// $ ("# Ajaximg" ).html (" ");
// $ ("# Wechat_qr"). val ('/uploads/qr/' + json. file_name );
            }
});

});
</Script>

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.