The loading of Jquerymoblie

Source: Internet
Author: User

Displays the words "Loading ...", with the display of the loaded picture.

Display Loader
function Showloader () {
$.mobile.loading (' show ', {
Text: ' Submitting ... ',//loader display
Textvisible:true,//whether to display text
Theme: ' d ',//loader theme style A-e
Textonly:false,//Whether only text is displayed
HTML: ""//HTML content to display, slices, etc.
});
}

Hide "Loading ..." and icons

function Hideloader ()
{
Hide Loader
$.mobile.loading (' hide ');
}

The request is as follows:

Showloader ();

$.ajax ({
Type: "Post",
Async:true,
URL: "test.jsp?orderid=" +orderdata.orderid+ "&sinalsign=" +sinalsign,
DataType: "JSON",
Success:function (JSON) {
if (json.returnstate) {
} else {
$ ("#warnSubmit"). HTML ("<font color= ' Red ' > (rental failed) </font>");
}
Hideloader ();
},
Error:function () {
$ ("#warnSubmit"). HTML ("<font color= ' Red ' > (rental failed) </font>");
Hideloader ();
}
});

Note: In a request, it is often shown loading before the request, hiding the loading after obtaining the result, it should be noted that because the request is asynchronous, you need to call Showloader before the request is initiated, call Hideloader in the result processing in the request, Instead of using Hideloader in the request code, the loading is not displayed.

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.