Ajax Submit Load Progress bar sample code _ajax related

Source: Internet
Author: User
Realize the effect diagram


 


Loading Picture


 


Implementation mode:





add
to the JSP page




style


Copy Code code as follows:

. progress{z-index:2000}
. mask{position:fixed;top:0;right:0;bottom:0;left:0 z-index:1000; Background-color: #2F2F2F}



node


Copy Code code as follows:

<div id= "Maskofprogressimage" class= "Mask" style= "Display:none" ></div>



JS


Copy Code code as follows:

<p> </p><p>var img = $ ("#progressImgage");
var mask = $ ("#maskOfProgressImage");</p>



Copy Code code as follows:

$.ajax ({
Url:url,
Type: "Post",
DataType: "JSON",
Data:data,
Beforesend:function (XHR) {
Img.show (). CSS ({
"Position": "Fixed",
"Top": "40%",
"Left": "45%",
' Margin-top ': function () {return-1 * Img.height ()/2;},
' Margin-left ': function () {return-1 * Img.width ()/2;}
});
Mask.show (). CSS ("opacity", "0.1");
},
Success:function (Result) {
Dosuccess ()
},
Complete:function (XHR) {
Img.hide ();
Mask.hide ();

}
});
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.